mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 14:47:29 -04: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
76f45be931
commit
57dfb64ecf
1 changed files with 2 additions and 2 deletions
|
|
@ -1148,8 +1148,8 @@ void
|
|||
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation,
|
||||
List *mergeActions)
|
||||
{
|
||||
return CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE,
|
||||
mergeActions);
|
||||
CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE,
|
||||
mergeActions);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue