diff options
Diffstat (limited to 'src/backend/commands')
-rw-r--r-- | src/backend/commands/vacuum.c | 4 |
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); |