aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2012-09-12 11:43:54 +0900
committermattn <mattn.jp@gmail.com>2012-09-12 11:43:54 +0900
commitb9ff6f3fd34bf6b537159bd01b8a93decc3eedda (patch)
tree3ef18abaf1f8a64ee3274c76c520f8b6b7a9854f
parentworkaround on windows. currently, int64 does not work correctly. (diff)
downloadgolite-b9ff6f3fd34bf6b537159bd01b8a93decc3eedda.tar.gz
golite-b9ff6f3fd34bf6b537159bd01b8a93decc3eedda.tar.xz
'is' does not work in some older sqlite3.
-rw-r--r--sqlite3_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3_test.go b/sqlite3_test.go
index da9ab4c..aaeb096 100644
--- a/sqlite3_test.go
+++ b/sqlite3_test.go
@@ -342,7 +342,7 @@ func TestBoolean(t *testing.T) {
t.Fatal("Failed to insert nonsense:", err)
}
- rows, err := db.Query("SELECT id, fbool FROM foo where fbool is ?", bool1)
+ rows, err := db.Query("SELECT id, fbool FROM foo where fbool = ?", bool1)
if err != nil {
t.Fatal("Unable to query foo table:", err)
}
@@ -366,7 +366,7 @@ func TestBoolean(t *testing.T) {
t.Fatalf("Value for id 1 should be %v, not %v", bool1, fbool)
}
- rows, err = db.Query("SELECT id, fbool FROM foo where fbool is ?", bool2)
+ rows, err = db.Query("SELECT id, fbool FROM foo where fbool = ?", bool2)
if err != nil {
t.Fatal("Unable to query foo table:", err)
}