mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Add test 01324_insert_tsv_raw
This commit is contained in:
parent
0a8a29272b
commit
a0988f505e
1
tests/queries/0_stateless/01324_insert_tsv_raw.reference
Normal file
1
tests/queries/0_stateless/01324_insert_tsv_raw.reference
Normal file
@ -0,0 +1 @@
|
||||
"a 1
|
7
tests/queries/0_stateless/01324_insert_tsv_raw.sql
Normal file
7
tests/queries/0_stateless/01324_insert_tsv_raw.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user