ClickHouse/tests/queries/0_stateless/01324_insert_tsv_raw.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
305 B
MySQL
Raw Normal View History

2020-06-28 10:21:50 +00:00
drop table if exists tsv_raw;
2020-07-01 03:21:53 +00:00
create table tsv_raw (strval String, intval Int64, b1 String, b2 String, b3 String, b4 String) engine = Memory;
insert into tsv_raw format TSVRaw "a 1 \ \\ "\"" "\\""
2020-06-28 10:21:50 +00:00
2020-07-01 03:21:53 +00:00
select * from tsv_raw format TSVRaw;
select * from tsv_raw format JSONCompactEachRow;
2020-06-28 10:21:50 +00:00
drop table tsv_raw;