mirror of
https://github.com/postgres/postgres.git
synced 2025-07-24 14:22:24 +03:00
Fix grammatical typos around possessive "its"
Some places spelled it "it's", which is short for "it is". In passing, fix a couple other nearby grammatical errors. Author: Jacob Brazeal <jacob.brazeal@gmail.com> Discussion: https://postgr.es/m/CA+COZaAO8g1KJCV0T48=CkJMjAnnfTGLWOATz+2aCh40c2Nm+g@mail.gmail.com
This commit is contained in:
@ -1663,7 +1663,7 @@ ReorderBufferTruncateTXN(ReorderBuffer *rb, ReorderBufferTXN *txn, bool txn_prep
|
||||
/* Check we're not mixing changes from different transactions. */
|
||||
Assert(change->txn == txn);
|
||||
|
||||
/* remove the change from it's containing list */
|
||||
/* remove the change from its containing list */
|
||||
dlist_delete(&change->node);
|
||||
|
||||
/*
|
||||
|
@ -4092,7 +4092,7 @@ subscription_change_cb(Datum arg, int cacheid, uint32 hashvalue)
|
||||
* subxact_info_write
|
||||
* Store information about subxacts for a toplevel transaction.
|
||||
*
|
||||
* For each subxact we store offset of it's first change in the main file.
|
||||
* For each subxact we store offset of its first change in the main file.
|
||||
* The file is always over-written as a whole.
|
||||
*
|
||||
* XXX We should only store subxacts that were not aborted yet.
|
||||
|
@ -1849,7 +1849,7 @@ pgoutput_stream_stop(struct LogicalDecodingContext *ctx,
|
||||
|
||||
/*
|
||||
* Notify downstream to discard the streamed transaction (along with all
|
||||
* it's subtransactions, if it's a toplevel transaction).
|
||||
* its subtransactions, if it's a toplevel transaction).
|
||||
*/
|
||||
static void
|
||||
pgoutput_stream_abort(struct LogicalDecodingContext *ctx,
|
||||
@ -1882,7 +1882,7 @@ pgoutput_stream_abort(struct LogicalDecodingContext *ctx,
|
||||
|
||||
/*
|
||||
* Notify downstream to apply the streamed transaction (along with all
|
||||
* it's subtransactions).
|
||||
* its subtransactions).
|
||||
*/
|
||||
static void
|
||||
pgoutput_stream_commit(struct LogicalDecodingContext *ctx,
|
||||
|
Reference in New Issue
Block a user