Skip to content

Commit bf5f95c

Browse files
committed
add logic test
1 parent 06aad9a commit bf5f95c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/logictest/suites/base/03_dml/03_0016_insert_into_values

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
statement ok
22
DROP DATABASE IF EXISTS db1;
33

4+
statement ok
5+
DROP DATABASE IF EXISTS db2;
6+
47
statement ok
58
CREATE DATABASE db1;
69

10+
statement ok
11+
CREATE DATABASE db2;
12+
713
statement ok
814
USE db1;
915

@@ -57,3 +63,12 @@ drop table st1;
5763

5864
statement ok
5965
DROP DATABASE db1;
66+
67+
statement ok
68+
CREATE TABLE IF NOT EXISTS db2.t2(a UInt32 null) Engine = Fuse;
69+
70+
statement ok
71+
INSERT INTO db2.t2 VALUES(1);
72+
73+
statement ok
74+
DROP DATABASE db2;

0 commit comments

Comments
 (0)