Navigation Menu

Skip to content

Commit

Permalink
Added test [#METR-22252].
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Aug 17, 2016
1 parent 7a04c80 commit 635fed9
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions dbms/tests/queries/0_stateless/00366_multi_statements.sh
@@ -0,0 +1,51 @@
#!/bin/bash

clickhouse-client --query="SELECT 1"
clickhouse-client --query="SELECT 1;"
clickhouse-client --query="SELECT 1; "
clickhouse-client --query="SELECT 1 ; "

clickhouse-client --query="SELECT 1; S" 2>&1 | grep -o 'Syntax error'
clickhouse-client --query="SELECT 1; SELECT 2" 2>&1 | grep -o 'Syntax error'
clickhouse-client --query="SELECT 1; SELECT 2; 2>&1 | grep -o 'Syntax error'"
clickhouse-client --query="SELECT 1; SELECT 2; SELECT" 2>&1 | grep -o 'Syntax error'

clickhouse-client -n --query="SELECT 1; S" 2>&1 | grep -o 'Syntax error'
clickhouse-client -n --query="SELECT 1; SELECT 2"
clickhouse-client -n --query="SELECT 1; SELECT 2;"
clickhouse-client -n --query="SELECT 1; SELECT 2; SELECT" 2>&1 | grep -o 'Syntax error'

clickhouse-client -n --query="DROP TABLE IF EXISTS test.t; CREATE TABLE test.t (x UInt64) ENGINE = TinyLog;"

clickhouse-client --query="INSERT INTO test.t VALUES (1),(2),(3);"
clickhouse-client --query="SELECT * FROM test.t"
clickhouse-client --query="INSERT INTO test.t VALUES" <<< "(4),(5),(6)"
clickhouse-client --query="SELECT * FROM test.t"
clickhouse-client --query="INSERT INTO test.t VALUES (7)" <<< ",(8),(9)"
clickhouse-client --query="SELECT * FROM test.t"

clickhouse-client -n --query="INSERT INTO test.t VALUES (1),(2),(3);"
clickhouse-client -n --query="SELECT * FROM test.t"
clickhouse-client -n --query="INSERT INTO test.t VALUES" <<< "(4),(5),(6)"
clickhouse-client -n --query="SELECT * FROM test.t"
clickhouse-client -n --query="INSERT INTO test.t VALUES (7)" <<< ",(8),(9)"
clickhouse-client -n --query="SELECT * FROM test.t"

curl -sS 'http://localhost:8123/' -d "SELECT 1"
curl -sS 'http://localhost:8123/' -d "SELECT 1;"
curl -sS 'http://localhost:8123/' -d "SELECT 1; "
curl -sS 'http://localhost:8123/' -d "SELECT 1 ; "

curl -sS 'http://localhost:8123/' -d "SELECT 1; S" 2>&1 | grep -o 'Syntax error'
curl -sS 'http://localhost:8123/' -d "SELECT 1; SELECT 2" 2>&1 | grep -o 'Syntax error'
curl -sS 'http://localhost:8123/' -d "SELECT 1; SELECT 2;" 2>&1 | grep -o 'Syntax error'
curl -sS 'http://localhost:8123/' -d "SELECT 1; SELECT 2; SELECT" 2>&1 | grep -o 'Syntax error'

curl -sS 'http://localhost:8123/' -d "INSERT INTO test.t VALUES (1),(2),(3);"
clickhouse-client --query="SELECT * FROM test.t"
curl -sS 'http://localhost:8123/?query=INSERT' -d "INTO test.t VALUES (4),(5),(6);"
clickhouse-client --query="SELECT * FROM test.t"
curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.t+VALUES' -d "(7),(8),(9)"
clickhouse-client --query="SELECT * FROM test.t"

clickhouse-client -n --query="DROP TABLE test.t;"

0 comments on commit 635fed9

Please sign in to comment.