diff options
Diffstat (limited to 'src/backend/utils/adt/tid.c')
-rw-r--r-- | src/backend/utils/adt/tid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/tid.c b/src/backend/utils/adt/tid.c index 1aab30b6aab..039ddc86a85 100644 --- a/src/backend/utils/adt/tid.c +++ b/src/backend/utils/adt/tid.c @@ -382,7 +382,7 @@ currtid_byreloid(PG_FUNCTION_ARGS) snapshot = RegisterSnapshot(GetLatestSnapshot()); scan = table_beginscan(rel, snapshot, 0, NULL); - table_get_latest_tid(scan, result); + table_tuple_get_latest_tid(scan, result); table_endscan(scan); UnregisterSnapshot(snapshot); @@ -420,7 +420,7 @@ currtid_byrelname(PG_FUNCTION_ARGS) snapshot = RegisterSnapshot(GetLatestSnapshot()); scan = table_beginscan(rel, snapshot, 0, NULL); - table_get_latest_tid(scan, result); + table_tuple_get_latest_tid(scan, result); table_endscan(scan); UnregisterSnapshot(snapshot); |