ClickHouse/dbms/tests/queries/0_stateless/00339_parsing_bad_arrays.sh
2016-06-29 00:32:12 +03:00

9 lines
562 B
Bash
Executable File

#!/bin/bash
curl -sS 'http://localhost:8123/' -d 'DROP TABLE IF EXISTS test.bad_arrays'
curl -sS 'http://localhost:8123/' -d 'CREATE TABLE test.bad_arrays (a Array(String)) ENGINE = Memory'
curl -sS 'http://localhost:8123/' -d 'INSERT INTO test.bad_arrays VALUES ([123])' 2>&1 | grep -c 'Exception'
curl -sS 'http://localhost:8123/' -d "INSERT INTO test.bad_arrays VALUES (['123', concat('Hello', ' world!'), toString(123)])"
curl -sS 'http://localhost:8123/' -d 'SELECT * FROM test.bad_arrays'
curl -sS 'http://localhost:8123/' -d 'DROP TABLE test.bad_arrays'