mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
fix crach on JOIN with array or tuple
This commit is contained in:
parent
5b850bad47
commit
83503df56a
@ -300,7 +300,7 @@ void Join::setSampleBlock(const Block & block)
|
||||
if (column.get() != column_no_lc.get())
|
||||
{
|
||||
materialized_columns.emplace_back(std::move(column_no_lc));
|
||||
key_columns[i] = materialized_columns[i].get();
|
||||
key_columns[i] = materialized_columns.back().get();
|
||||
}
|
||||
|
||||
/// We will join only keys, where all components are not NULL.
|
||||
|
@ -0,0 +1,2 @@
|
||||
0 (0,0)
|
||||
0 (0,0)
|
@ -0,0 +1,7 @@
|
||||
SELECT * FROM (SELECT dummy as a, (toUInt8(0), toUInt8(0)) AS tup FROM system.one)
|
||||
JOIN (SELECT dummy as a, (toUInt8(0), toUInt8(0)) AS tup FROM system.one)
|
||||
USING (a, tup);
|
||||
|
||||
SELECT * FROM (SELECT dummy as a, (toUInt8(0), toUInt8(0)) AS tup FROM system.one)
|
||||
GLOBAL ANY FULL OUTER JOIN (SELECT dummy as a, (toUInt8(0), toUInt8(0)) AS tup FROM system.one)
|
||||
USING (a, tup);
|
Loading…
Reference in New Issue
Block a user