mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
Remove all references to "xlog" from SQL-callable functions in pg_proc.
Commit f82ec32ac3
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
This commit is contained in:
@ -5870,7 +5870,7 @@ recoveryPausesHere(void)
|
||||
|
||||
ereport(LOG,
|
||||
(errmsg("recovery has paused"),
|
||||
errhint("Execute pg_xlog_replay_resume() to continue.")));
|
||||
errhint("Execute pg_wal_replay_resume() to continue.")));
|
||||
|
||||
while (RecoveryIsPaused())
|
||||
{
|
||||
|
Reference in New Issue
Block a user