mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +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:
@ -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;
|
||||
|
Reference in New Issue
Block a user