aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2020-06-14 14:05:18 -0700
committerAndres Freund <andres@anarazel.de>2020-07-08 12:57:23 -0700
commit5e7bbb528638c0f6d585bab107ec7a19e3a39deb (patch)
treec01d61e45b23ef760e4225538ff24277346e34de /src/backend/commands/tablecmds.c
parent229f8c219f8fffacc253eca6023eab10a16eb009 (diff)
downloadpostgresql-5e7bbb528638c0f6d585bab107ec7a19e3a39deb.tar.gz
postgresql-5e7bbb528638c0f6d585bab107ec7a19e3a39deb.zip
code: replace 'master' with 'primary' where appropriate.
Also changed "in the primary" to "on the primary", and added a few "the" before "primary". Author: Andres Freund Reviewed-By: David Steele Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue@alap3.anarazel.de
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r--src/backend/commands/tablecmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 42330692e76..26700da2789 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -3676,7 +3676,7 @@ AlterTableInternal(Oid relid, List *cmds, bool recurse)
* and does not travel through this section of code and cannot be combined with
* any of the subcommands given here.
*
- * Note that Hot Standby only knows about AccessExclusiveLocks on the master
+ * Note that Hot Standby only knows about AccessExclusiveLocks on the primary
* so any changes that might affect SELECTs running on standbys need to use
* AccessExclusiveLocks even if you think a lesser lock would do, unless you
* have a solution for that also.