mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Rename pg_stat_wal_receiver.conn_info to conninfo.
Per discussion on pgsql-hackers, conninfo is better as the column name because it's more commonly used in PostgreSQL. Catalog version bumped due to the change of pg_proc. Author: Michael Paquier
This commit is contained in:
@ -1893,8 +1893,8 @@ pg_stat_wal_receiver| SELECT s.pid,
|
||||
s.latest_end_lsn,
|
||||
s.latest_end_time,
|
||||
s.slot_name,
|
||||
s.conn_info
|
||||
FROM pg_stat_get_wal_receiver() s(pid, status, receive_start_lsn, receive_start_tli, received_lsn, received_tli, last_msg_send_time, last_msg_receipt_time, latest_end_lsn, latest_end_time, slot_name, conn_info)
|
||||
s.conninfo
|
||||
FROM pg_stat_get_wal_receiver() s(pid, status, receive_start_lsn, receive_start_tli, received_lsn, received_tli, last_msg_send_time, last_msg_receipt_time, latest_end_lsn, latest_end_time, slot_name, conninfo)
|
||||
WHERE (s.pid IS NOT NULL);
|
||||
pg_stat_xact_all_tables| SELECT c.oid AS relid,
|
||||
n.nspname AS schemaname,
|
||||
|
Reference in New Issue
Block a user