diff options
author | Amit Kapila <akapila@postgresql.org> | 2022-01-11 10:50:18 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2022-01-11 10:50:18 +0530 |
commit | dbfa1022e4b63e71c4313f4d61a20ff97f2fb134 (patch) | |
tree | 6a0206e5eb7c9d01b46c9f459a2bdc3f6ecc3e78 /src | |
parent | b69aba74578adf58f48de0f21dceddc2d9f1c4b1 (diff) | |
download | postgresql-dbfa1022e4b63e71c4313f4d61a20ff97f2fb134.tar.gz postgresql-dbfa1022e4b63e71c4313f4d61a20ff97f2fb134.zip |
Fix typo in rewriteheap.c.
Author: Bharath Rupireddy
Discussion: https://postgr.es/m/CALj2ACW7SvfFW8r2uKH6oQm1kNpt8aQMG61kSBPK0S2PHhFbMw@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/rewriteheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c index 5bb5ebba230..aa265edf601 100644 --- a/src/backend/access/heap/rewriteheap.c +++ b/src/backend/access/heap/rewriteheap.c @@ -741,7 +741,7 @@ raw_heap_insert(RewriteState state, HeapTuple tup) * * When doing logical decoding - which relies on using cmin/cmax of catalog * tuples, via xl_heap_new_cid records - heap rewrites have to log enough - * information to allow the decoding backend to updates its internal mapping + * information to allow the decoding backend to update its internal mapping * of (relfilenode,ctid) => (cmin, cmax) to be correct for the rewritten heap. * * For that, every time we find a tuple that's been modified in a catalog |