mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03: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:
@@ -1148,8 +1148,8 @@ void
|
|||||||
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation,
|
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation,
|
||||||
List *mergeActions)
|
List *mergeActions)
|
||||||
{
|
{
|
||||||
return CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE,
|
CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE,
|
||||||
mergeActions);
|
mergeActions);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user