mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 18:25:17 -05:00
Silence compiler warning in release 11 and 12 branches
The offending code is not present in later branches. Discussion: https://postgr.es/m/ba2150c1-8485-6597-fafe-4fcd39e49c28@dunslane.net
This commit is contained in:
parent
b915bf495f
commit
dd9779141e
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ static Oid
|
|||
lookup_fdw_handler_func(DefElem *handler)
|
||||
{
|
||||
Oid handlerOid;
|
||||
Oid funcargtypes[1]; /* dummy */
|
||||
Oid funcargtypes[1] = {0}; /* dummy */
|
||||
|
||||
if (handler == NULL || handler->arg == NULL)
|
||||
return InvalidOid;
|
||||
|
|
|
|||
Loading…
Reference in a new issue