Skip to content

Commit f13f2e4

Browse files
author
Amit Kapila
committed
Fix typos in logical.c and reorderbuffer.c.
Reviewed-by: Sawada Masahiko Discussion: https://postgr.es/m/CAA4eK1K6zTpuqf_d7wXCBjo_EF0_B6Fz3Ecp71Vq18t=wG-nzg@mail.gmail.com
1 parent 7538708 commit f13f2e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/backend/replication/logical/logical.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@ UpdateDecodingStats(LogicalDecodingContext *ctx)
14771477
if (rb->spillBytes <= 0)
14781478
return;
14791479

1480-
elog(DEBUG2, "UpdateSpillStats: updating stats %p %lld %lld %lld",
1480+
elog(DEBUG2, "UpdateDecodingStats: updating stats %p %lld %lld %lld",
14811481
rb,
14821482
(long long) rb->spillTxns,
14831483
(long long) rb->spillCount,

src/backend/replication/logical/reorderbuffer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ ReorderBufferCleanupTXN(ReorderBuffer *rb, ReorderBufferTXN *txn)
14321432
ReorderBufferCleanupTXN(rb, subtxn);
14331433
}
14341434

1435-
/* cleanup changes in the toplevel txn */
1435+
/* cleanup changes in the txn */
14361436
dlist_foreach_modify(iter, &txn->changes)
14371437
{
14381438
ReorderBufferChange *change;
@@ -1533,7 +1533,7 @@ ReorderBufferTruncateTXN(ReorderBuffer *rb, ReorderBufferTXN *txn)
15331533
ReorderBufferTruncateTXN(rb, subtxn);
15341534
}
15351535

1536-
/* cleanup changes in the toplevel txn */
1536+
/* cleanup changes in the txn */
15371537
dlist_foreach_modify(iter, &txn->changes)
15381538
{
15391539
ReorderBufferChange *change;

0 commit comments

Comments
 (0)