mirror of
https://github.com/postgres/postgres.git
synced 2026-03-03 22:00:57 -05:00
Fix compiler error introduced by 5386bfb9c1.
Per buildfarm member wrasse, void function cannot return a value. This only affects v13-v17, where an ABI-compatible wrapper function was added. Backpatch-through: 13-17
This commit is contained in:
parent
0610b843c9
commit
dbef9cbaa4
1 changed files with 1 additions and 1 deletions
|
|
@ -1197,7 +1197,7 @@ CheckValidResultRelNew(ResultRelInfo *resultRelInfo, CmdType operation,
|
|||
void
|
||||
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation)
|
||||
{
|
||||
return CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE);
|
||||
CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue