Add test 01324_insert_tsv_raw

This commit is contained in:
hcz 2020-06-28 18:21:50 +08:00
parent 0a8a29272b
commit a0988f505e
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
"a 1

View File

@ -0,0 +1,7 @@
drop table if exists tsv_raw;
create table tsv_raw (a String, b Int64) engine = Memory;
insert into tsv_raw format TSVRaw "a 1
;
select * from tsv_raw;
drop table tsv_raw;