Fix S3 stateless tests

This commit is contained in:
vdimir 2021-08-30 11:34:02 +03:00 committed by Nikita Mikhaylov
parent 56a3675591
commit bef0628522
3 changed files with 28 additions and 28 deletions

View File

@ -1,6 +1,6 @@
DROP TABLE IF EXISTS table_with_range; DROP TABLE IF EXISTS table_with_range;
CREATE TABLE table_with_range(`name` String,`number` UInt32) ENGINE = S3('http://localhost:11111/test/tsv_with_header.tsv', 'test', 'test', 'TSVWithNames') SETTINGS input_format_with_names_use_header = 1; CREATE TABLE table_with_range(`name` String,`number` UInt32) ENGINE = S3('http://localhost:11111/test/tsv_with_header.tsv', 'test', 'testtest', 'TSVWithNames') SETTINGS input_format_with_names_use_header = 1;
select * from table_with_range; select * from table_with_range;