1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03: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:
Andrew Dunstan
2023-08-27 07:01:26 -04:00
parent b808dbf905
commit f06e1711d2

View File

@ -478,7 +478,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;