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 ff61c4d commit 3aec8b1Copy full SHA for 3aec8b1
driver/driver_test.go
@@ -319,7 +319,6 @@ func TestInsert(t *testing.T) {
319
320
func TestUpsert(t *testing.T) {
321
_, n, _ := Version()
322
- fmt.Printf("Version: %d\n", n)
323
if !(n >= 3024000) {
324
t.Skip("UPSERT requires sqlite3 => 3.24.0")
325
}
driver/limit_test.go
@@ -37,7 +37,7 @@ func TestLimit(t *testing.T) {
37
t.Fatal(err)
38
39
40
- if rv := driverConn.SetLimit(SQLITE_LIMIT_TRIGGER_DEPTH, 5); rv != 1000 {
+ if rv := driverConn.SetLimit(SQLITE_LIMIT_TRIGGER_DEPTH, 5); rv != 1000 && rv != -1 {
41
t.Fatalf("Unable to set limit; %d", rv)
42
43
0 commit comments