From 0180cda4efdf70d2ae6403f39ae0e8e0991a479c Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Thu, 18 Jun 2015 16:38:50 +0300 Subject: [PATCH] dbms: modified test [#METR-2944]. --- .../00177_inserts_through_http_parts.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dbms/tests/queries/0_stateless/00177_inserts_through_http_parts.sh b/dbms/tests/queries/0_stateless/00177_inserts_through_http_parts.sh index 4c7834d605b..788f2bda147 100755 --- a/dbms/tests/queries/0_stateless/00177_inserts_through_http_parts.sh +++ b/dbms/tests/queries/0_stateless/00177_inserts_through_http_parts.sh @@ -1,11 +1,11 @@ #!/bin/bash -curl 'http://localhost:8123/?query=DROP+TABLE' -d 'IF EXISTS test.insert' -curl 'http://localhost:8123/?query=CREATE' -d 'TABLE test.insert (x UInt8) ENGINE = Memory' -curl 'http://localhost:8123/' -d 'INSERT INTO test.insert VALUES (1),(2)' -curl 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES' -d '(3),(4)' -curl 'http://localhost:8123/?query=INSERT+INTO+test.insert' -d 'VALUES (5),(6)' -curl 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES+(7)' -d ',(8)' -curl 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES+(9),(10)' -d ' ' -curl 'http://localhost:8123/' -d 'SELECT x FROM test.insert ORDER BY x' -curl 'http://localhost:8123/?query=DROP+TABLE' -d 'test.insert' +curl -sS 'http://localhost:8123/?query=DROP+TABLE' -d 'IF EXISTS test.insert' +curl -sS 'http://localhost:8123/?query=CREATE' -d 'TABLE test.insert (x UInt8) ENGINE = Memory' +curl -sS 'http://localhost:8123/' -d 'INSERT INTO test.insert VALUES (1),(2)' +curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES' -d '(3),(4)' +curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.insert' -d 'VALUES (5),(6)' +curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES+(7)' -d ',(8)' +curl -sS 'http://localhost:8123/?query=INSERT+INTO+test.insert+VALUES+(9),(10)' -d ' ' +curl -sS 'http://localhost:8123/' -d 'SELECT x FROM test.insert ORDER BY x' +curl -sS 'http://localhost:8123/?query=DROP+TABLE' -d 'test.insert'