@@ -861,8 +861,8 @@ _bt_compare(Relation rel,
861
861
*qualifications in the scan key. On success exit, the page containing
862
862
*the current index tuple is pinned but not locked, and data about
863
863
*the matching tuple(s) on the page has been loaded into so->currPos.
864
- *scan->xs_ctup.t_self is set to the heap TID of the current tuple,
865
- *and if requested, scan->xs_itup points to a copy of the index tuple.
864
+ *scan->xs_heaptid is set to the heap TID of the current tuple, and if
865
+ *requested, scan->xs_itup points to a copy of the index tuple.
866
866
*
867
867
* If there are no matching items in the index, we return false, with no
868
868
* pins or locks held.
@@ -1448,9 +1448,9 @@ _bt_first(IndexScanDesc scan, ScanDirection dir)
1448
1448
*but is not locked, and so->currPos.itemIndex identifies which item was
1449
1449
*previously returned.
1450
1450
*
1451
- *On successful exit, scan->xs_ctup.t_self is set to the TID of the
1452
- *next heap tuple, and if requested, scan->xs_itup points to a copy of
1453
- *the index tuple. so->currPos is updated as needed.
1451
+ *On successful exit, scan->xs_heaptid is set to the TID of the next
1452
+ *heap tuple, and if requested, scan->xs_itup points to a copy of the
1453
+ *index tuple. so->currPos is updated as needed.
1454
1454
*
1455
1455
*On failure exit (no more tuples), we release pin and set
1456
1456
*so->currPos.buf to InvalidBuffer.