mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
dbms: fixed error with JOIN [#METR-14411].
This commit is contained in:
parent
06d92dba61
commit
a362a666eb
@ -146,7 +146,7 @@ private:
|
||||
|
||||
/** Блоки данных таблицы, с которой идёт соединение.
|
||||
*/
|
||||
Blocks blocks;
|
||||
BlocksList blocks;
|
||||
|
||||
MapsAny maps_any;
|
||||
MapsAll maps_all;
|
||||
|
@ -0,0 +1 @@
|
||||
1 abc
|
@ -0,0 +1,12 @@
|
||||
SELECT
|
||||
1 AS DomainID,
|
||||
Domain ANY LEFT JOIN
|
||||
(
|
||||
SELECT
|
||||
1 AS DomainID,
|
||||
'abc' AS Domain
|
||||
UNION ALL
|
||||
SELECT
|
||||
2 AS DomainID,
|
||||
'def' AS Domain
|
||||
) USING DomainID;
|
Loading…
Reference in New Issue
Block a user