Silence compiler warning in non-assert builds.

Per buildfarm.
This commit is contained in:
Tom Lane 2021-03-31 16:50:45 -04:00
parent c545e9524d
commit 8998e3cafa
1 changed files with 1 additions and 1 deletions

View File

@ -6820,7 +6820,7 @@ void
process_pending_request(AsyncRequest *areq)
{
ForeignScanState *node = (ForeignScanState *) areq->requestee;
PgFdwScanState *fsstate = (PgFdwScanState *) node->fdw_state;
PgFdwScanState *fsstate PG_USED_FOR_ASSERTS_ONLY = (PgFdwScanState *) node->fdw_state;
EState *estate = node->ss.ps.state;
MemoryContext oldcontext;