diff options
Diffstat (limited to 'contrib/postgres_fdw/deparse.c')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 6bdeda98240..d2b94aaf3ba 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -1315,10 +1315,7 @@ deparseExplicitTargetList(List *tlist, List **retrieved_attrs, foreach(lc, tlist) { - TargetEntry *tle = (TargetEntry *) lfirst(lc); - - /* Extract expression if TargetEntry node */ - Assert(IsA(tle, TargetEntry)); + TargetEntry *tle = castNode(TargetEntry, lfirst(lc)); if (i > 0) appendStringInfoString(buf, ", "); |