Skip to content

Commit a64bab2

Browse files
committed
Fix CI small issue
1 parent 671214b commit a64bab2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: chdb/driver/driver_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,8 @@ func TestQueryRow(t *testing.T) {
179179
t.Fatalf("new session fail, err: %s", err)
180180
}
181181
defer session.Cleanup()
182+
session.Query("CREATE DATABASE IF NOT EXISTS testdb; " +
183+
"CREATE TABLE IF NOT EXISTS testdb.testtable (id UInt32) ENGINE = MergeTree() ORDER BY id;")
182184

183185
session.Query("USE testdb; INSERT INTO testtable VALUES (1), (2), (3);")
184186

0 commit comments

Comments
 (0)