We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06aad9a commit bf5f95cCopy full SHA for bf5f95c
tests/logictest/suites/base/03_dml/03_0016_insert_into_values
@@ -1,9 +1,15 @@
1
statement ok
2
DROP DATABASE IF EXISTS db1;
3
4
+statement ok
5
+DROP DATABASE IF EXISTS db2;
6
+
7
8
CREATE DATABASE db1;
9
10
11
+CREATE DATABASE db2;
12
13
14
USE db1;
15
@@ -57,3 +63,12 @@ drop table st1;
57
63
58
64
59
65
DROP DATABASE db1;
66
67
68
+CREATE TABLE IF NOT EXISTS db2.t2(a UInt32 null) Engine = Fuse;
69
70
71
+INSERT INTO db2.t2 VALUES(1);
72
73
74
+DROP DATABASE db2;
0 commit comments