]> granicus.if.org Git - postgresql/commitdiff
"A void function may not return a value".
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 18 May 2019 04:40:39 +0000 (00:40 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 18 May 2019 04:40:39 +0000 (00:40 -0400)
Per buildfarm.

src/backend/access/table/tableam.c

index 6e46befdfd9a85ef40313d788a9f9ab302cc6ad5..73025b8ead065dcc450fd6a045c844c46e050e89 100644 (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);
 }