mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
Fix NULL handling in multi-batch Parallel Hash Left Join.
NULL keys in left joins were skipped when building batch files. Repair, by making the keep_nulls argument to ExecHashGetHashValue() depend on whether this is a left outer join, as we do in other paths. Bug #15475. Thinko in 1804284042e. Back-patch to 11. Reported-by: Paul Schaap Diagnosed-by: Andrew Gierth Dicussion: https://postgr.es/m/15475-11a7a783fed72a36%40postgresql.org
This commit is contained in:
parent
ca49b5ca5a
commit
fd6449aa38
@ -1395,7 +1395,7 @@ ExecParallelHashJoinPartitionOuter(HashJoinState *hjstate)
|
||||
if (ExecHashGetHashValue(hashtable, econtext,
|
||||
hjstate->hj_OuterHashKeys,
|
||||
true, /* outer tuple */
|
||||
false, /* outer join, currently unsupported */
|
||||
HJ_FILL_OUTER(hjstate),
|
||||
&hashvalue))
|
||||
{
|
||||
int batchno;
|
||||
|
Loading…
x
Reference in New Issue
Block a user