guettli
guettli

Reputation: 27796

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?

Upvotes: 0

Views: 2409

Answers (1)

Laurenz Albe
Laurenz Albe

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

Related Questions