Commit 9da2224e authored by Amit Kapila's avatar Amit Kapila

Fix typo in reorderbuffer.c.

Author: Zhijie Hou
Reviewed-by: Sawada Masahiko
Discussion: https://postgr.es/m/ba88bb58aaf14284abca16aec04bf279@G08CNEXMBPEKD05.g08.fujitsu.local
parent 034510c8
...@@ -2119,13 +2119,13 @@ ReorderBufferProcessTXN(ReorderBuffer *rb, ReorderBufferTXN *txn, ...@@ -2119,13 +2119,13 @@ ReorderBufferProcessTXN(ReorderBuffer *rb, ReorderBufferTXN *txn,
* Mapped catalog tuple without data, emitted while * Mapped catalog tuple without data, emitted while
* catalog table was in the process of being rewritten. We * catalog table was in the process of being rewritten. We
* can fail to look up the relfilenode, because the * can fail to look up the relfilenode, because the
* relmapper has no "historic" view, in contrast to normal * relmapper has no "historic" view, in contrast to the
* the normal catalog during decoding. Thus repeated * normal catalog during decoding. Thus repeated rewrites
* rewrites can cause a lookup failure. That's OK because * can cause a lookup failure. That's OK because we do not
* we do not decode catalog changes anyway. Normally such * decode catalog changes anyway. Normally such tuples
* tuples would be skipped over below, but we can't * would be skipped over below, but we can't identify
* identify whether the table should be logically logged * whether the table should be logically logged without
* without mapping the relfilenode to the oid. * mapping the relfilenode to the oid.
*/ */
if (reloid == InvalidOid && if (reloid == InvalidOid &&
change->data.tp.newtuple == NULL && change->data.tp.newtuple == NULL &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment