File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -966,10 +966,10 @@ postgres=# SELECT * FROM pg_create_physical_replication_slot('node_a_slot');
966
966
-------------+-----
967
967
node_a_slot |
968
968
969
- postgres=# SELECT * FROM pg_replication_slots;
970
- slot_name | slot_type | datoid | database | active | xmin | restart_lsn | confirmed_flush_lsn
971
- -------------+-----------+--------+----------+--------+------+-------------+---------------------
972
- node_a_slot | physical | | | f | | |
969
+ postgres=# SELECT slot_name, slot_type, active FROM pg_replication_slots;
970
+ slot_name | slot_type | active
971
+ -------------+-----------+--------
972
+ node_a_slot | physical | f
973
973
(1 row)
974
974
</programlisting>
975
975
To configure the standby to use this slot, <varname>primary_slot_name</varname>
You can’t perform that action at this time.
0 commit comments