2016-12-21 20:04:27 +00:00
|
|
|
#!/usr/bin/env bash
|
2016-06-28 21:32:12 +00:00
|
|
|
|
|
|
|
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'
|