@@ -1549,7 +1549,7 @@ HeapTupleHeaderIsOnlyLocked(HeapTupleHeader tuple)
1549
1549
}
1550
1550
1551
1551
/*
1552
- * check whether the transaciont id 'xid' in in the pre-sorted array 'xip'.
1552
+ * check whether the transaciont id 'xid' is in the pre-sorted array 'xip'.
1553
1553
*/
1554
1554
static bool
1555
1555
TransactionIdInArray (TransactionId xid , TransactionId * xip , Size num )
@@ -1589,7 +1589,7 @@ HeapTupleSatisfiesHistoricMVCC(HeapTuple htup, Snapshot snapshot,
1589
1589
Assert (!TransactionIdDidCommit (xmin ));
1590
1590
return false;
1591
1591
}
1592
- /* check if its one of our txids, toplevel is also in there */
1592
+ /* check if it's one of our txids, toplevel is also in there */
1593
1593
else if (TransactionIdInArray (xmin , snapshot -> subxip , snapshot -> subxcnt ))
1594
1594
{
1595
1595
bool resolved ;
@@ -1598,7 +1598,7 @@ HeapTupleSatisfiesHistoricMVCC(HeapTuple htup, Snapshot snapshot,
1598
1598
1599
1599
/*
1600
1600
* another transaction might have (tried to) delete this tuple or
1601
- * cmin/cmax was stored in a combocid. S we need to to lookup the
1601
+ * cmin/cmax was stored in a combocid. So we need to lookup the
1602
1602
* actual values externally.
1603
1603
*/
1604
1604
resolved = ResolveCminCmaxDuringDecoding (HistoricSnapshotGetTupleCids (), snapshot ,
@@ -1662,7 +1662,7 @@ HeapTupleSatisfiesHistoricMVCC(HeapTuple htup, Snapshot snapshot,
1662
1662
xmax = HeapTupleGetUpdateXid (tuple );
1663
1663
}
1664
1664
1665
- /* check if its one of our txids, toplevel is also in there */
1665
+ /* check if it's one of our txids, toplevel is also in there */
1666
1666
if (TransactionIdInArray (xmax , snapshot -> subxip , snapshot -> subxcnt ))
1667
1667
{
1668
1668
bool resolved ;
0 commit comments