diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-08-07 17:42:47 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-08-10 22:55:41 -0400 |
commit | a1ef920e27ba6ab3602aaf6d6751d8628fac1af8 (patch) | |
tree | 51485b2898ae4b01b2e71ad5e40a7d3b02d75f91 /src/backend/storage | |
parent | d6391b03b3025372620925e5746e65c288a1e371 (diff) | |
download | postgresql-a1ef920e27ba6ab3602aaf6d6751d8628fac1af8.tar.gz postgresql-a1ef920e27ba6ab3602aaf6d6751d8628fac1af8.zip |
Remove uses of "slave" in replication contexts
This affects mostly code comments, some documentation, and tests.
Official APIs already used "standby".
Diffstat (limited to 'src/backend/storage')
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index a7e8cf2d43a..eab218e3166 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -1408,7 +1408,7 @@ GetOldestXmin(Relation rel, int flags) * being careful not to generate a "permanent" XID. * * vacuum_defer_cleanup_age provides some additional "slop" for the - * benefit of hot standby queries on slave servers. This is quick and + * benefit of hot standby queries on standby servers. This is quick and * dirty, and perhaps not all that useful unless the master has a * predictable transaction rate, but it offers some protection when * there's no walsender connection. Note that we are assuming |