diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-09-05 11:35:49 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-09-05 11:35:49 +0300 |
commit | c80b5f66c6faff085e312492be0aa50754e99eb9 (patch) | |
tree | cee081a32310c6572265d40c32e567d3c19ab2c9 /src/backend/access/heap/rewriteheap.c | |
parent | c39f5674dfc77802b4245dd92cb4b1e35499a5a5 (diff) | |
download | postgresql-c80b5f66c6faff085e312492be0aa50754e99eb9.tar.gz postgresql-c80b5f66c6faff085e312492be0aa50754e99eb9.zip |
Fix misc typos.
Oskari Saarenmaa. Backpatch to stable branches where applicable.
Diffstat (limited to 'src/backend/access/heap/rewriteheap.c')
-rw-r--r-- | src/backend/access/heap/rewriteheap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c index bcce3e35d5e..6a6fc3bf11d 100644 --- a/src/backend/access/heap/rewriteheap.c +++ b/src/backend/access/heap/rewriteheap.c @@ -763,9 +763,9 @@ raw_heap_insert(RewriteState state, HeapTuple tup) * * Crash-Safety: This module diverts from the usual patterns of doing WAL * since it cannot rely on checkpoint flushing out all buffers and thus - * waiting for exlusive locks on buffers. Usually the XLogInsert() covering + * waiting for exclusive locks on buffers. Usually the XLogInsert() covering * buffer modifications is performed while the buffer(s) that are being - * modified are exlusively locked guaranteeing that both the WAL record and + * modified are exclusively locked guaranteeing that both the WAL record and * the modified heap are on either side of the checkpoint. But since the * mapping files we log aren't in shared_buffers that interlock doesn't work. * |