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/executor/execMain.c | |
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/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index c11aa4fe214..6671a25ffb3 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -759,8 +759,8 @@ ExecCheckRTEPermsModified(Oid relOid, Oid userid, Bitmapset *modifiedCols, * unless we're in parallel mode, in which case don't even allow writes * to temp tables. * - * Note: in a Hot Standby slave this would need to reject writes to temp - * tables just as we do in parallel mode; but an HS slave can't have created + * Note: in a Hot Standby this would need to reject writes to temp + * tables just as we do in parallel mode; but an HS standby can't have created * any temp tables in the first place, so no need to check that. */ static void |