mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test.
This commit is contained in:
parent
e2ade3c574
commit
3d0f878535
@ -0,0 +1,5 @@
|
||||
drop table if exists tab;
|
||||
create table tab (x UInt64, `arr.a` Array(UInt64), `arr.b` Array(UInt64)) engine = MergeTree order by x;
|
||||
select x from tab array join arr prewhere x != 0 where arr; -- { serverError 47; }
|
||||
select x from tab array join arr prewhere arr where x != 0; -- { serverError 47; }
|
||||
drop table if exists tab;
|
Loading…
Reference in New Issue
Block a user