diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-03-17 20:47:28 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-03-17 20:47:28 +0900 |
commit | 2bccced110025f48bf426a8a9d7f627ef3663fcd (patch) | |
tree | 9e4b89fd4dafd9d67768beb792dbf7435f308166 /src/backend/access/heap/rewriteheap.c | |
parent | 5c6d9fc4b2b8b6688a482a4b4116d7642e36b9d9 (diff) | |
download | postgresql-2bccced110025f48bf426a8a9d7f627ef3663fcd.tar.gz postgresql-2bccced110025f48bf426a8a9d7f627ef3663fcd.zip |
Fix typos in comments.
Thom Brown
Diffstat (limited to 'src/backend/access/heap/rewriteheap.c')
-rw-r--r-- | src/backend/access/heap/rewriteheap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c index 239c7dad0c9..4cf07eaa2e4 100644 --- a/src/backend/access/heap/rewriteheap.c +++ b/src/backend/access/heap/rewriteheap.c @@ -783,9 +783,9 @@ raw_heap_insert(RewriteState state, HeapTuple tup) * deal with WAL logging at all - an fsync() at the end of a rewrite would be * sufficient for crash safety. Any mapping that hasn't been safely flushed to * disk has to be by an aborted (explicitly or via a crash) transaction and is - * ignored by virtue of the xid in it's name being subject to a + * ignored by virtue of the xid in its name being subject to a * TransactionDidCommit() check. But we want to support having standbys via - * physical replication, both for availability and to to do logical decoding + * physical replication, both for availability and to do logical decoding * there. * ------------------------------------------------------------------------ */ @@ -1046,7 +1046,7 @@ logical_rewrite_log_mapping(RewriteState state, TransactionId xid, /* * Perform logical remapping for a tuple that's mapped from old_tid to - * new_tuple->t_self by rewrite_heap_tuple() iff necessary for the tuple. + * new_tuple->t_self by rewrite_heap_tuple() if necessary for the tuple. */ static void logical_rewrite_heap_tuple(RewriteState state, ItemPointerData old_tid, |