mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Remove spurious return.
Per buildfarm member anole. Author: Andres Freund
This commit is contained in:
@ -700,8 +700,8 @@ static inline void
|
||||
table_complete_speculative(Relation rel, TupleTableSlot *slot, uint32 specToken,
|
||||
bool succeeded)
|
||||
{
|
||||
return rel->rd_tableam->tuple_complete_speculative(rel, slot, specToken,
|
||||
succeeded);
|
||||
rel->rd_tableam->tuple_complete_speculative(rel, slot, specToken,
|
||||
succeeded);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user