]> granicus.if.org Git - postgresql/commit
Fix cross-type case in partial row matching for hashed subplans.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 11 Oct 2012 16:21:18 +0000 (12:21 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 11 Oct 2012 16:21:18 +0000 (12:21 -0400)
commit5c07de4bdfadd2ea73c66dcad3b0e4d5ca4ceef7
tree4d1ca42d363e3a88b301367d652325e686338b47
parent6975dcddb23219bf842da7f622ea38d42e5adebf
Fix cross-type case in partial row matching for hashed subplans.

When hashing a subplan like "WHERE (a, b) NOT IN (SELECT x, y FROM ...)",
findPartialMatch() attempted to match rows using the hashtable's internal
equality operators, which of course are for x and y's datatypes.  What we
need to use are the potentially cross-type operators for a=x, b=y, etc.
Failure to do that leads to wrong answers or even crashes.  The scope for
problems is limited to cases where we have different types with compatible
hash functions (else we'd not be using a hashed subplan), but for example
int4 vs int8 can cause the problem.

Per bug #7597 from Bo Jensen.  This has been wrong since the hashed-subplan
code was written, so patch all the way back.
src/backend/executor/nodeSubplan.c
src/test/regress/expected/subselect.out
src/test/regress/sql/subselect.sql