Skip to content

Commit

Permalink
test: update test insert into array.
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsofun committed Nov 13, 2022
1 parent 42199ab commit d159ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/logictest/suites/base/03_dml/03_0023_insert_into_array
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,11 @@ ee ff
statement ok
CREATE TABLE IF NOT EXISTS t18(id Int, arr Array(Int64 Null)) Engine = Fuse;

statement ok
statement error 1010
INSERT INTO t18 (id, arr) VALUES(1, [1,2,3,4]), (2, [5,null,7,8]), (3, [null,9,10,11]);

statement ok
CREATE TABLE IF NOT EXISTS t19(id Int, arr Array(Array(Int64) Null)) Engine = Fuse;

statement ok
statement error 1010
INSERT INTO t19 (id, arr) VALUES(1, [[1,2],[3,4]]), (2, [[5,6],null]), (3, [[7,8],[9,10]]);

0 comments on commit d159ac2

Please sign in to comment.