Improve some tests

This commit is contained in:
Alexey Milovidov 2023-12-17 21:10:28 +01:00
parent 500a281acd
commit 4a4de20b77
2 changed files with 2 additions and 1 deletions

View File

@ -8,3 +8,4 @@ echo -e "a,b,c\n1,2,3" > $CLICKHOUSE_TEST_UNIQUE_NAME.csvwithnames
$CLICKHOUSE_LOCAL -q "select b from file('$CLICKHOUSE_TEST_UNIQUE_NAME.csvwithnames') settings input_format_with_names_use_header=0"
rm $CLICKHOUSE_TEST_UNIQUE_NAME.csvwithnames

View File

@ -10,4 +10,4 @@ create table test (x UInt64, y UInt32, size UInt64) engine=Memory;
insert into test select c1, c2, _size from file('$CLICKHOUSE_TEST_UNIQUE_NAME.csv') settings use_structure_from_insertion_table_in_table_functions=1;
select * from test;
"
rm $CLICKHOUSE_TEST_UNIQUE_NAME.csv