@@ -4,10 +4,10 @@ SELECT * FROM pglogical_regress_variables()
4
4
SELECT * FROM pglogical.drop_node(node_name := 'test_provider');
5
5
ERROR: cannot drop node "test_provider" because replication slot "pgl_postgres_test_provider_test_sube55bf37" on the node is still active
6
6
HINT: drop the subscriptions first
7
- SELECT slot_name, plugin, slot_type, database , active FROM pg_replication_slots;
8
- slot_name | plugin | slot_type | database | active
9
- --------------------------------------------+------------------+-----------+- -----------+--------
10
- pgl_postgres_test_provider_test_sube55bf37 | pglogical_output | logical | regression | t
7
+ SELECT plugin, slot_type, active FROM pg_replication_slots;
8
+ plugin | slot_type | active
9
+ ------------------+ -----------+--------
10
+ pglogical_output | logical | t
11
11
(1 row)
12
12
13
13
SELECT count(*) FROM pg_stat_replication;
@@ -36,9 +36,9 @@ SELECT * FROM pglogical.drop_node(node_name := 'test_provider');
36
36
t
37
37
(1 row)
38
38
39
- SELECT slot_name, plugin, slot_type, database , active FROM pg_replication_slots;
40
- slot_name | plugin | slot_type | database | active
41
- -----------+--------+-----------+ ----------+--------
39
+ SELECT plugin, slot_type, active FROM pg_replication_slots;
40
+ plugin | slot_type | active
41
+ --------+- ----------+--------
42
42
(0 rows)
43
43
44
44
SELECT count(*) FROM pg_stat_replication;
0 commit comments