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 @@ -931,10 +931,10 @@ postgres=# SELECT * FROM pg_create_physical_replication_slot('node_a_slot');
931
931
-------------+---------------
932
932
node_a_slot |
933
933
934
- postgres=# SELECT * FROM pg_replication_slots;
935
- slot_name | slot_type | datoid | database | active | xmin | restart_lsn | confirmed_flush_lsn
936
- -------------+-----------+--------+----------+--------+------+-------------+---------------------
937
- node_a_slot | physical | | | f | | |
934
+ postgres=# SELECT slot_name, slot_type, active FROM pg_replication_slots;
935
+ slot_name | slot_type | active
936
+ -------------+-----------+--------
937
+ node_a_slot | physical | f
938
938
(1 row)
939
939
</programlisting>
940
940
To configure the standby to use this slot, <varname>primary_slot_name</>
You can’t perform that action at this time.
0 commit comments