test is added

This commit is contained in:
Yakov Olkhovskiy 2023-01-19 00:14:19 +00:00
parent 1d58ded72b
commit 1e6fe3250c
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
::1 42
::1 42
::1 42

View File

@ -0,0 +1,3 @@
SELECT * FROM format(CSVWithNamesAndTypes, 'ip,port\nIPv6,UInt16\n::1,42\n');
SELECT * FROM format(TSVWithNamesAndTypes, 'ip\tport\nIPv6\tUInt16\n::1\t42\n');
SELECT * FROM format(JSONCompactEachRowWithNamesAndTypes, '["ip","port"]\n["IPv6","UInt16"]\n["::1",42]\n');