mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
Added a test #2150
This commit is contained in:
parent
ef51f126b4
commit
de56cc7a8e
@ -0,0 +1 @@
|
|||||||
|
1
|
@ -0,0 +1,6 @@
|
|||||||
|
DROP TABLE IF EXISTS test.file;
|
||||||
|
CREATE TABLE test.file (number UInt64) ENGINE = File(TSV);
|
||||||
|
SELECT * FROM test.file; -- { serverError 107 }
|
||||||
|
INSERT INTO test.file VALUES (1);
|
||||||
|
SELECT * FROM test.file;
|
||||||
|
DROP TABLE test.file;
|
Loading…
Reference in New Issue
Block a user