Commit 55d57359 authored by Magnus Hagander's avatar Magnus Hagander

Fix typos in comments and debug message

Antonin Houska
parent 7d676065
...@@ -281,7 +281,7 @@ CreateInitDecodingContext(char *plugin, ...@@ -281,7 +281,7 @@ CreateInitDecodingContext(char *plugin,
LWLockRelease(ProcArrayLock); LWLockRelease(ProcArrayLock);
/* /*
* tell the snapshot builder to only assemble snapshot once reaching the a * tell the snapshot builder to only assemble snapshot once reaching the
* running_xact's record with the respective xmin. * running_xact's record with the respective xmin.
*/ */
xmin_horizon = slot->data.catalog_xmin; xmin_horizon = slot->data.catalog_xmin;
...@@ -880,7 +880,7 @@ LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart ...@@ -880,7 +880,7 @@ LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart
} }
/* /*
* Handle a consumer's conformation having received all changes up to lsn. * Handle a consumer's confirmation having received all changes up to lsn.
*/ */
void void
LogicalConfirmReceivedLocation(XLogRecPtr lsn) LogicalConfirmReceivedLocation(XLogRecPtr lsn)
......
...@@ -466,8 +466,8 @@ ReorderBufferGetTupleBuf(ReorderBuffer *rb, Size tuple_len) ...@@ -466,8 +466,8 @@ ReorderBufferGetTupleBuf(ReorderBuffer *rb, Size tuple_len)
/* /*
* Most tuples are below MaxHeapTupleSize, so we use a slab allocator for * Most tuples are below MaxHeapTupleSize, so we use a slab allocator for
* those. Thus always allocate at least MaxHeapTupleSize. Note that tuples * those. Thus always allocate at least MaxHeapTupleSize. Note that tuples
* tuples generated for oldtuples can be bigger, as they don't have * generated for oldtuples can be bigger, as they don't have out-of-line
* out-of-line toast columns. * toast columns.
*/ */
if (alloc_len < MaxHeapTupleSize) if (alloc_len < MaxHeapTupleSize)
alloc_len = MaxHeapTupleSize; alloc_len = MaxHeapTupleSize;
......
...@@ -901,7 +901,7 @@ SnapBuildEndTxn(SnapBuild *builder, XLogRecPtr lsn, TransactionId xid) ...@@ -901,7 +901,7 @@ SnapBuildEndTxn(SnapBuild *builder, XLogRecPtr lsn, TransactionId xid)
/* /*
* NB: This handles subtransactions correctly even if we started from * NB: This handles subtransactions correctly even if we started from
* suboverflowed xl_running_xacts because we only keep track of toplevel * suboverflowed xl_running_xacts because we only keep track of toplevel
* transactions. Since the latter are always are allocated before their * transactions. Since the latter are always allocated before their
* subxids and since they end at the same time it's sufficient to deal * subxids and since they end at the same time it's sufficient to deal
* with them here. * with them here.
*/ */
...@@ -981,7 +981,7 @@ SnapBuildCommitTxn(SnapBuild *builder, XLogRecPtr lsn, TransactionId xid, ...@@ -981,7 +981,7 @@ SnapBuildCommitTxn(SnapBuild *builder, XLogRecPtr lsn, TransactionId xid,
* we reached consistency. * we reached consistency.
*/ */
forced_timetravel = true; forced_timetravel = true;
elog(DEBUG1, "forced to assume catalog changes for xid %u because it was running to early", xid); elog(DEBUG1, "forced to assume catalog changes for xid %u because it was running too early", xid);
} }
for (nxact = 0; nxact < nsubxacts; nxact++) for (nxact = 0; nxact < nsubxacts; nxact++)
......
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