mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Rename pg_replication_slot's new active_in to active_pid.
In d811c037ce
active_in was added but discussion since showed that
active_pid is preferred as a name.
Discussion: CAMsr+YFKgZca5_7_ouaMWxA5PneJC9LNViPzpDHusaPhU9pA7g@mail.gmail.com
This commit is contained in:
@ -1396,11 +1396,11 @@ pg_replication_slots| SELECT l.slot_name,
|
||||
l.datoid,
|
||||
d.datname AS database,
|
||||
l.active,
|
||||
l.active_in,
|
||||
l.active_pid,
|
||||
l.xmin,
|
||||
l.catalog_xmin,
|
||||
l.restart_lsn
|
||||
FROM (pg_get_replication_slots() l(slot_name, plugin, slot_type, datoid, active, active_in, xmin, catalog_xmin, restart_lsn)
|
||||
FROM (pg_get_replication_slots() l(slot_name, plugin, slot_type, datoid, active, active_pid, xmin, catalog_xmin, restart_lsn)
|
||||
LEFT JOIN pg_database d ON ((l.datoid = d.oid)));
|
||||
pg_roles| SELECT pg_authid.rolname,
|
||||
pg_authid.rolsuper,
|
||||
|
Reference in New Issue
Block a user