diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-01-05 07:56:40 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-01-05 07:56:40 +0530 |
commit | 9da2224ea2bb9801afc29bff6a325bf796868bdc (patch) | |
tree | 74cdcf651b7801738fe5163ea3389550962f0f39 | |
parent | 034510c820cd75e0410332d92b4967ef9b844936 (diff) | |
download | postgresql-9da2224ea2bb9801afc29bff6a325bf796868bdc.tar.gz postgresql-9da2224ea2bb9801afc29bff6a325bf796868bdc.zip |
Fix typo in reorderbuffer.c.
Author: Zhijie Hou
Reviewed-by: Sawada Masahiko
Discussion: https://postgr.es/m/ba88bb58aaf14284abca16aec04bf279@G08CNEXMBPEKD05.g08.fujitsu.local
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 315bfe7cae2..5a62ab8bbc1 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -2119,13 +2119,13 @@ ReorderBufferProcessTXN(ReorderBuffer *rb, ReorderBufferTXN *txn, * Mapped catalog tuple without data, emitted while * catalog table was in the process of being rewritten. We * can fail to look up the relfilenode, because the - * relmapper has no "historic" view, in contrast to normal - * the normal catalog during decoding. Thus repeated - * rewrites can cause a lookup failure. That's OK because - * we do not decode catalog changes anyway. Normally such - * tuples would be skipped over below, but we can't - * identify whether the table should be logically logged - * without mapping the relfilenode to the oid. + * relmapper has no "historic" view, in contrast to the + * normal catalog during decoding. Thus repeated rewrites + * can cause a lookup failure. That's OK because we do not + * decode catalog changes anyway. Normally such tuples + * would be skipped over below, but we can't identify + * whether the table should be logically logged without + * mapping the relfilenode to the oid. */ if (reloid == InvalidOid && change->data.tp.newtuple == NULL && |