diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-08-19 16:21:39 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-08-19 16:21:39 +0900 |
commit | c96581abe418a3bf64b643aa4e27091d1eaea1c1 (patch) | |
tree | 9a311850bacb63d295ce38e006ed10121cf3eae4 /src/backend/replication/logical/reorderbuffer.c | |
parent | 927f34ce8a215c8b254136f710cca9ca4da1352c (diff) | |
download | postgresql-c96581abe418a3bf64b643aa4e27091d1eaea1c1.tar.gz postgresql-c96581abe418a3bf64b643aa4e27091d1eaea1c1.zip |
Fix inconsistencies and typos in the tree, take 11
This fixes various typos in docs and comments, and removes some orphaned
definitions.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/5da8e325-c665-da95-21e0-c8a99ea61fbf@gmail.com
Diffstat (limited to 'src/backend/replication/logical/reorderbuffer.c')
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 5fa3d7323e9..409f787ac36 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -3368,7 +3368,7 @@ ApplyLogicalMappingFile(HTAB *tuplecid_data, Oid relid, const char *fname) /* - * Check whether the TransactionOid 'xid' is in the pre-sorted array 'xip'. + * Check whether the TransactionId 'xid' is in the pre-sorted array 'xip'. */ static bool TransactionIdInArray(TransactionId xid, TransactionId *xip, Size num) |