Search code examples
postgresqlpglogical

pglogical: list replication sets?


I looked at the docs of pglogical.

But I could not find a way to list all replication sets, which I created with create_replication_set().

How to list all replication sets?


Solution

  • According to the source, that should be as simple as

    SELECT * FROM pglogical.replication_set;
    

    You need to be a superuser to select from that table.