mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
add more test cases as discussed on tg
This commit is contained in:
parent
08d9734fc0
commit
c7be8c226c
@ -5,3 +5,10 @@
|
||||
xyzabc 2
|
||||
1 3
|
||||
1 2 0 0
|
||||
1 0 0 3
|
||||
\N 1 2 \N 0
|
||||
\N 1 0 \N 3
|
||||
1
|
||||
1
|
||||
1 hello\0\0\0
|
||||
1 hello\0\0\0
|
||||
|
@ -11,4 +11,13 @@ with 3 as "1" select 1, "1";
|
||||
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/9953
|
||||
select 1, * from (select 2 x) a left join (select 1, 3 y) b on y = x;
|
||||
select 1, * from (select 2 x, 1) a right join (select 3 y) b on y = x;
|
||||
select null, isConstant(null), * from (select 2 x) a left join (select null, 3 y) b on y = x;
|
||||
select null, isConstant(null), * from (select 2 x, null) a right join (select 3 y) b on y = x;
|
||||
|
||||
-- other cases with joins and constants
|
||||
|
||||
select cast(1, 'UInt8') from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8');
|
||||
|
||||
select isConstant('UInt8'), toFixedString('hello', toUInt8(substring('UInt8', 5, 1))) from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8');
|
||||
|
||||
|
@ -1,2 +0,0 @@
|
||||
select cast(1, 'UInt8') from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8');
|
||||
select isConstant('UInt8'), toFixedString('hello', toUInt8(substring('UInt8', 5, 1))) from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8');
|
Loading…
Reference in New Issue
Block a user