]> granicus.if.org Git - postgresql/commit
Improve ExecEvalVar's handling of whole-row variables in cases where the
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Jan 2010 15:31:04 +0000 (15:31 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Jan 2010 15:31:04 +0000 (15:31 +0000)
commit292176a118da6979e5d368a4baf27f26896c99a5
tree72f12e20b4d57ceaaf9690cf8b00a601b66e1484
parentccaad191126f96eb9a0417e811e7bc83ad8d7a94
Improve ExecEvalVar's handling of whole-row variables in cases where the
rowtype contains dropped columns.  Sometimes the input tuple will be formed
from a select targetlist in which dropped columns are filled with a NULL
of an arbitrary type (the planner typically uses INT4, since it can't tell
what type the dropped column really was).  So we need to relax the rowtype
compatibility check to not insist on physical compatibility if the actual
column value is NULL.

In principle we might need to do this for functions returning composite
types, too (see tupledesc_match()).  In practice there doesn't seem to be
a bug there, probably because the function will be using the same cached
rowtype descriptor as the caller.  Fixing that code path would require
significant rearrangement, so I left it alone for now.

Per complaint from Filip Rembialkowski.
src/backend/executor/execQual.c