mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Update test
This commit is contained in:
parent
ddf0dd7eb8
commit
d7de634123
@ -1,11 +1,14 @@
|
|||||||
|
drop table if exists test;
|
||||||
create table test (a Int8) engine = MergeTree order by tuple();
|
create table test (a Int8) engine = MergeTree order by tuple();
|
||||||
INSERT INTO test
|
INSERT INTO test
|
||||||
SELECT * FROM (
|
SELECT x.number FROM (
|
||||||
SELECT number
|
SELECT number
|
||||||
FROM system.numbers
|
FROM system.numbers
|
||||||
LIMIT 10
|
LIMIT 10
|
||||||
) AS x
|
) AS x
|
||||||
INNER JOIN input('a UInt64') AS y ON x.number = y.a
|
INNER JOIN input('a UInt64') AS y ON x.number = y.a
|
||||||
Format CSV 42; -- {serverError INVALID_USAGE_OF_INPUT}
|
Format CSV 2
|
||||||
|
;
|
||||||
|
select * from test;
|
||||||
drop table test;
|
drop table test;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user