mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Silence compiler warning in non-assert builds.
Per buildfarm.
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user