Skip to content

Commit 8998e3c

Browse files
committed
Silence compiler warning in non-assert builds.
Per buildfarm.
1 parent c545e95 commit 8998e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/postgres_fdw/postgres_fdw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6820,7 +6820,7 @@ void
68206820
process_pending_request(AsyncRequest *areq)
68216821
{
68226822
ForeignScanState *node = (ForeignScanState *) areq->requestee;
6823-
PgFdwScanState *fsstate = (PgFdwScanState *) node->fdw_state;
6823+
PgFdwScanState *fsstate PG_USED_FOR_ASSERTS_ONLY = (PgFdwScanState *) node->fdw_state;
68246824
EState *estate = node->ss.ps.state;
68256825
MemoryContext oldcontext;
68266826

0 commit comments

Comments
 (0)