1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-09 18:21:05 +03:00

"A void function may not return a value".

Per buildfarm.
This commit is contained in:
Tom Lane 2019-05-18 00:40:39 -04:00
parent 147e3722f7
commit d307954a7d

View File

@ -236,7 +236,7 @@ table_get_latest_tid(TableScanDesc scan, ItemPointer tid)
ItemPointerGetOffsetNumberNoCheck(tid),
RelationGetRelationName(rel))));
return tableam->tuple_get_latest_tid(scan, tid);
tableam->tuple_get_latest_tid(scan, tid);
}