diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-03-31 16:50:45 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-03-31 16:50:45 -0400 |
commit | 8998e3cafa23632790787b8cc726998e84067259 (patch) | |
tree | 927c1653631212dcf2f56e389a3438163f553af4 /contrib/postgres_fdw/postgres_fdw.c | |
parent | c545e9524dcfcfce25c370f584b31562e8d7a4b7 (diff) | |
download | postgresql-8998e3cafa23632790787b8cc726998e84067259.tar.gz postgresql-8998e3cafa23632790787b8cc726998e84067259.zip |
Silence compiler warning in non-assert builds.
Per buildfarm.
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 649f15113d0..16c2979f2d0 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -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; |