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 2439c84 commit d31a44aCopy full SHA for d31a44a
sqlite3_test.go
@@ -234,10 +234,7 @@ func TestInsert(t *testing.T) {
234
func TestUpsert(t *testing.T) {
235
_, n, _ := Version()
236
if !(n >= 3024000) {
237
- t.Log("Your version of sqlite3 doesn't support UPSERT feature.")
238
- t.Log("Version >= '3.24.0' needed.")
239
- t.Log("Skipping test...")
240
- return
+ t.Skip("UPSERT requires sqlite3 => 3.24.0")
241
}
242
tempFilename := TempFilename(t)
243
defer os.Remove(tempFilename)
0 commit comments