Added test [#METR-21817].

This commit is contained in:
Alexey Milovidov 2016-06-23 22:45:26 +03:00
parent df538babc8
commit 13d6731fad
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,2 @@
1 2 3
4 5 6

View File

@ -0,0 +1,8 @@
#!/bin/bash
echo 'DROP TABLE IF EXISTS test.bom' | curl -sS 'http://localhost:8123/' --data-binary @-
echo 'CREATE TABLE test.bom (a UInt8, b UInt8, c UInt8) ENGINE = Memory' | curl -sS 'http://localhost:8123/' --data-binary @-
echo -ne '1,2,3\n' | curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.bom+FORMAT+CSV' --data-binary @-
echo -ne '\xEF\xBB\xBF4,5,6\n' | curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.bom+FORMAT+CSV' --data-binary @-
echo 'SELECT * FROM test.bom ORDER BY a' | curl -sS 'http://localhost:8123/' --data-binary @-
echo 'DROP TABLE test.bom' | curl -sS 'http://localhost:8123/' --data-binary @-