aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2020-06-15 10:14:40 -0700
committerAndres Freund <andres@anarazel.de>2020-07-08 13:24:35 -0700
commita9a4a7ad565b136cbee735d4bb505d98d06da522 (patch)
tree76afdb4c439ca6de54dc073755c2ff03399506cb /src/backend/commands
parent7c89f8a5b810d10dae300ec58ea7d70024e9123e (diff)
downloadpostgresql-a9a4a7ad565b136cbee735d4bb505d98d06da522.tar.gz
postgresql-a9a4a7ad565b136cbee735d4bb505d98d06da522.zip
code: replace most remaining uses of 'master'.
Author: Andres Freund Reviewed-By: David Steele Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue@alap3.anarazel.de
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/vacuum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c
index d32de23e626..576c7e63e99 100644
--- a/src/backend/commands/vacuum.c
+++ b/src/backend/commands/vacuum.c
@@ -1897,7 +1897,7 @@ vacuum_rel(Oid relid, RangeVar *relation, VacuumParams *params)
/*
* If the relation has a secondary toast rel, vacuum that too while we
- * still hold the session lock on the master table. Note however that
+ * still hold the session lock on the main table. Note however that
* "analyze" will not get done on the toast table. This is good, because
* the toaster always uses hardcoded index access and statistics are
* totally unimportant for toast relations.
@@ -1906,7 +1906,7 @@ vacuum_rel(Oid relid, RangeVar *relation, VacuumParams *params)
vacuum_rel(toast_relid, NULL, params);
/*
- * Now release the session-level lock on the master table.
+ * Now release the session-level lock on the main table.
*/
UnlockRelationIdForSession(&onerelid, lmode);