Reputation: 27796
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?
Upvotes: 0
Views: 2409
Reputation: 246013
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.
Upvotes: 6