test_read_formats
loop
CREATE TABLE IF NOT EXISTS table_{format} ENGINE = File({format}) AS test.hits
INSERT INTO table_{format} SELECT * FROM test.hits LIMIT 100000
5
10000
100
60000
format
TabSeparated
TabSeparatedWithNames
TabSeparatedWithNamesAndTypes
CSV
CSVWithNames
Values
JSONEachRow
TSKV
RowBinary
Native
test.hits
SELECT * FROM table_{format}
DROP TABLE IF EXISTS table_{format}