tableam: Add and use table_fetch_row_version().
authorAndres Freund <andres@anarazel.de>
Mon, 25 Mar 2019 07:13:42 +0000 (00:13 -0700)
committerAndres Freund <andres@anarazel.de>
Mon, 25 Mar 2019 07:17:59 +0000 (00:17 -0700)
commit9a8ee1dc650be623c32b1df103254847be974d01
treeff0b827f8a082f076037a17cbd91a9a2ca0b743f
parentc77e12208cd8540a209cc698373a3cfba8802639
tableam: Add and use table_fetch_row_version().

This is essentially the tableam version of heapam_fetch(),
i.e. fetching a tuple identified by a tid, performing visibility
checks.

Note that this different from table_index_fetch_tuple(), which is for
index lookups. It therefore has to handle a tid pointing to an earlier
version of a tuple if the AM uses an optimization like heap's HOT. Add
comments to that end.

This commit removes the stats_relation argument from heap_fetch, as
it's been unused for a long time.

Author: Andres Freund
Reviewed-By: Haribabu Kommi
Discussion: https://postgr.es/m/20180703070645.wchpu5muyto5n647@alap3.anarazel.de
src/backend/access/heap/heapam.c
src/backend/access/heap/heapam_handler.c
src/backend/access/table/tableamapi.c
src/backend/commands/trigger.c
src/backend/executor/execMain.c
src/backend/executor/nodeModifyTable.c
src/backend/executor/nodeTidscan.c
src/include/access/heapam.h
src/include/access/tableam.h