ClickHouse/tests/queries/0_stateless/00832_storage_file_lock.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
204 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS file;
CREATE TABLE file (number UInt64) ENGINE = File(TSV);
SELECT * FROM file; -- { serverError FILE_DOESNT_EXIST }
INSERT INTO file VALUES (1);
SELECT * FROM file;
DROP TABLE file;