ClickHouse/tests/queries/0_stateless/00748_insert_array_with_null.sql

12 lines
558 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS arraytest;
CREATE TABLE arraytest ( created_date Date DEFAULT toDate(created_at), created_at DateTime DEFAULT now(), strings Array(String) DEFAULT emptyArrayString()) ENGINE = MergeTree(created_date, cityHash64(created_at), (created_date, cityHash64(created_at)), 8192);
INSERT INTO arraytest (created_at, strings) VALUES (now(), ['aaaaa', 'bbbbb', 'ccccc']);
2019-12-16 10:24:02 +00:00
INSERT INTO arraytest (created_at, strings) VALUES (now(), ['aaaaa', 'bbbbb', null]); -- { clientError 349 }
SELECT strings from arraytest;
DROP TABLE IF EXISTS arraytest;