ClickHouse/tests/queries/0_stateless/02165_insert_from_infile.reference

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

6 lines
181 B
Plaintext
Raw Normal View History

INSERT INTO test FROM INFILE \'data.file\' SELECT x
FROM input(\'x UInt32\')
INSERT INTO test FROM INFILE \'data.file\' WITH number AS x
SELECT number
FROM input(\'number UInt32\')