Added test for sending external tables via HTTP [#METR-2944].

This commit is contained in:
Alexey Milovidov 2016-02-12 03:58:26 +03:00
parent dafece62ef
commit 1cee75e828
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,2 @@
1 Hello
2 World

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo -ne '1,Hello\n2,World\n' | curl -sSF 'file=@-' 'http://localhost:8123/?query=SELECT+*+FROM+file&file_format=CSV&file_types=UInt8,String';