diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-01-06 08:56:19 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-01-06 08:56:19 +0530 |
commit | e02e840ff7787d4798fca9f6a5b8b3657f45cf0c (patch) | |
tree | ed6c7dcdca8191479e85407e7d2fd2be16b0b6ce /src/backend/replication/logical/decode.c | |
parent | 25dde5835772a58356383bf1112c6c2a1a37df0e (diff) | |
download | postgresql-e02e840ff7787d4798fca9f6a5b8b3657f45cf0c.tar.gz postgresql-e02e840ff7787d4798fca9f6a5b8b3657f45cf0c.zip |
Fix typos in decode.c and logical.c.
Per report by Ajin Cherian in email:
https://postgr.es/m/CAFPTHDYnRKDvzgDxoMn_CKqXA-D0MtrbyJvfvjBsO4G=UHDXkg@mail.gmail.com
Diffstat (limited to 'src/backend/replication/logical/decode.c')
-rw-r--r-- | src/backend/replication/logical/decode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/replication/logical/decode.c b/src/backend/replication/logical/decode.c index 23ab3cf6052..afa1df00d0e 100644 --- a/src/backend/replication/logical/decode.c +++ b/src/backend/replication/logical/decode.c @@ -685,10 +685,10 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf, * so during startup, to get to the first transaction the client needs. As * we have reset the catalog caches before starting to read WAL, and we * haven't yet touched any catalogs, there can't be anything to invalidate. - * But if we're "forgetting" this commit because it's it happened in - * another database, the invalidations might be important, because they - * could be for shared catalogs and we might have loaded data into the - * relevant syscaches. + * But if we're "forgetting" this commit because it happened in another + * database, the invalidations might be important, because they could be + * for shared catalogs and we might have loaded data into the relevant + * syscaches. * --- */ if (DecodeTXNNeedSkip(ctx, buf, parsed->dbId, origin_id)) |