mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +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)
|
process_pending_request(AsyncRequest *areq)
|
||||||
{
|
{
|
||||||
ForeignScanState *node = (ForeignScanState *) areq->requestee;
|
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;
|
EState *estate = node->ss.ps.state;
|
||||||
MemoryContext oldcontext;
|
MemoryContext oldcontext;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user