We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 671214b + d4526a7 commit 24d9727Copy full SHA for 24d9727
.github/workflows/chdb.yml
@@ -1,6 +1,10 @@
1
name: chDB-go
2
3
on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
+ paths-ignore:
7
+ - '**/.md'
8
push:
9
branches: [ "main" ]
10
paths-ignore:
chdb/driver/driver_test.go
@@ -179,6 +179,8 @@ func TestQueryRow(t *testing.T) {
179
t.Fatalf("new session fail, err: %s", err)
180
}
181
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;")
184
185
session.Query("USE testdb; INSERT INTO testtable VALUES (1), (2), (3);")
186
0 commit comments