Remove all references to "xlog" from SQL-callable functions in pg_proc.

Robert Haas <rhaas@postgresql.org>

Commit: 806091c96f9b81f7631e4e37a05af377b473b5da
Author: Robert Haas <rhaas@postgresql.org>
Date: 2017-02-09T20:10:09Z
Releases: 10.0
Remove all references to "xlog" from SQL-callable functions in pg_proc.

Commit f82ec32ac30ae7e3ec7c84067192535b2ff8ec0e renamed the pg_xlog
directory to pg_wal.  To make things consistent, and because "xlog" is
terrible terminology for either "transaction log" or "write-ahead log"
rename all SQL-callable functions that contain "xlog" in the name to
instead contain "wal".  (Note that this may pose an upgrade hazard for
some users.)

Similarly, rename the xlog_position argument of the functions that
create slots to be called wal_position.

Discussion: https://www.postgresql.org/message-id/CA+Tgmob=YmA=H3DbW1YuOXnFVgBheRmyDkWcD9M8f=5bGWYEoQ@mail.gmail.com

Files

PathChange+/−
contrib/bloom/t/001_wal.pl modified +1 −1
contrib/test_decoding/expected/ddl.out modified +1 −1
contrib/test_decoding/sql/ddl.sql modified +1 −1
doc/src/sgml/backup.sgml modified +1 −1
doc/src/sgml/func.sgml modified +36 −36
doc/src/sgml/high-availability.sgml modified +7 −7
doc/src/sgml/logicaldecoding.sgml modified +1 −1
doc/src/sgml/recovery-config.sgml modified +1 −1
src/backend/access/transam/recovery.conf.sample modified +1 −1
src/backend/access/transam/xlog.c modified +1 −1
src/backend/access/transam/xlogfuncs.c modified +18 −18
src/backend/catalog/system_views.sql modified +5 −5
src/bin/pg_basebackup/t/030_pg_recvlogical.pl modified +1 −1
src/bin/pg_rewind/libpq_fetch.c modified +2 −2
src/bin/pg_rewind/RewindTest.pm modified +1 −1
src/include/catalog/catversion.h modified +1 −1
src/include/catalog/pg_proc.h modified +27 −27
src/test/modules/commit_ts/t/002_standby.pl modified +4 −4
src/test/modules/commit_ts/t/003_standby_2.pl modified +2 −2
src/test/perl/PostgresNode.pm modified +5 −5
src/test/recovery/t/002_archiving.pl modified +3 −3
src/test/recovery/t/003_recovery_targets.pl modified +8 −8
src/test/recovery/t/005_replay_delay.pl modified +2 −2
src/test/recovery/t/008_fsm_truncation.pl modified +2 −2
src/test/regress/expected/hs_standby_functions.out modified +1 −1
src/test/regress/sql/hs_primary_extremes.sql modified +1 −1
src/test/regress/sql/hs_primary_setup.sql modified +1 −1
src/test/regress/sql/hs_standby_functions.sql modified +1 −1
src/test/subscription/t/001_rep_changes.pl modified +1 −1
src/test/subscription/t/002_types.pl modified +1 −1

Documentation touched

Discussion