mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
Silence compiler warning in non-assert builds.
Per buildfarm.
This commit is contained in:
parent
c545e9524d
commit
8998e3cafa
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user