Commit 32b8f0b0 authored by Andres Freund's avatar Andres Freund

Remove spurious return.

Per buildfarm member anole.

Author: Andres Freund
parent d9c5e962
......@@ -398,7 +398,7 @@ extern TableScanDesc table_beginscan_parallel(Relation rel, ParallelTableScanDes
static inline void
table_parallelscan_reinitialize(Relation rel, ParallelTableScanDesc pscan)
{
return rel->rd_tableam->parallelscan_reinitialize(rel, pscan);
rel->rd_tableam->parallelscan_reinitialize(rel, pscan);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment