Added test [#METR-21885].

This commit is contained in:
Alexey Milovidov 2016-06-29 00:32:12 +03:00
parent 28b75ba8bc
commit e38030fe5d
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,2 @@
1
['123','Hello world!','123']

View File

@ -0,0 +1,8 @@
#!/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'