diff options
author | Andres Freund <andres@anarazel.de> | 2020-06-14 14:05:18 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2020-07-08 12:57:23 -0700 |
commit | 5e7bbb528638c0f6d585bab107ec7a19e3a39deb (patch) | |
tree | c01d61e45b23ef760e4225538ff24277346e34de /src/backend/access/heap/pruneheap.c | |
parent | 229f8c219f8fffacc253eca6023eab10a16eb009 (diff) | |
download | postgresql-5e7bbb528638c0f6d585bab107ec7a19e3a39deb.tar.gz |
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/access/heap/pruneheap.c')
-rw-r--r-- | src/backend/access/heap/pruneheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/pruneheap.c b/src/backend/access/heap/pruneheap.c index 1794cfd8d9..256df4de10 100644 --- a/src/backend/access/heap/pruneheap.c +++ b/src/backend/access/heap/pruneheap.c @@ -78,7 +78,7 @@ heap_page_prune_opt(Relation relation, Buffer buffer) /* * We can't write WAL in recovery mode, so there's no point trying to - * clean the page. The master will likely issue a cleaning WAL record soon + * clean the page. The primary will likely issue a cleaning WAL record soon * anyway, so this is no particular loss. */ if (RecoveryInProgress()) |