mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Add test from issue #20624
This commit is contained in:
parent
7a56ab8b1d
commit
8d4ccb40de
@ -8,3 +8,4 @@ xyzabc 2
|
|||||||
1 0 0 3
|
1 0 0 3
|
||||||
\N 1 2 \N 0
|
\N 1 2 \N 0
|
||||||
\N 1 0 \N 3
|
\N 1 0 \N 3
|
||||||
|
2 1
|
||||||
|
@ -20,3 +20,6 @@ select null, isConstant(null), * from (select 2 x, null) a right join (select 3
|
|||||||
select cast(1, 'UInt8') from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8'); -- { serverError 403 }
|
select cast(1, 'UInt8') from (select arrayJoin([1, 2]) as a) t1 left join (select 1 as b) t2 on b = ignore('UInt8'); -- { serverError 403 }
|
||||||
|
|
||||||
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'); -- { serverError 403 }
|
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'); -- { serverError 403 }
|
||||||
|
|
||||||
|
-- https://github.com/ClickHouse/ClickHouse/issues/20624
|
||||||
|
select 2 as `toString(x)`, x from (select 1 as x);
|
||||||
|
Loading…
Reference in New Issue
Block a user