]> granicus.if.org Git - postgresql/commit
postgres_fdw: Promote an Assert() to elog().
authorRobert Haas <rhaas@postgresql.org>
Tue, 14 Jun 2016 12:55:50 +0000 (08:55 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 14 Jun 2016 13:00:12 +0000 (09:00 -0400)
commit332fdbef20b5b5f2588447793dbcc3bb9b88eb51
treed8a4b1e1ae233b367965e77d3f6edb4952cf187c
parent783cb6e48b29a34b2cefc401a72d4cc86fa6b2a6
postgres_fdw: Promote an Assert() to elog().

Andreas Seltenreich reports that it is possible for a PlaceHolderVar
to creep into this tlist, and I fear that even after that's fixed we
might have other, similar bugs in this area either now or in the
future.  There's a lot of action-at-a-distance here, because the
validity of this assertion depends on core planner behavior; so, let's
use elog() to make sure we catch this even in non-assert builds,
rather than just crashing.
contrib/postgres_fdw/deparse.c