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:
Andrew Dunstan 2023-08-27 07:01:26 -04:00
parent b915bf495f
commit dd9779141e

View File

@ -472,7 +472,7 @@ static Oid
lookup_fdw_handler_func(DefElem *handler) lookup_fdw_handler_func(DefElem *handler)
{ {
Oid handlerOid; Oid handlerOid;
Oid funcargtypes[1]; /* dummy */ Oid funcargtypes[1] = {0}; /* dummy */
if (handler == NULL || handler->arg == NULL) if (handler == NULL || handler->arg == NULL)
return InvalidOid; return InvalidOid;