aboutsummaryrefslogtreecommitdiff
path: root/all_test.go
diff options
context:
space:
mode:
authorJan Mercl <0xjnml@gmail.com>2019-12-18 17:51:11 +0100
committerJan Mercl <0xjnml@gmail.com>2019-12-18 17:51:11 +0100
commit0bd6d67fefae8bb593662c01bd539776019681a8 (patch)
tree12124ac1d27826cea1c39f115f2c24a835deadb3 /all_test.go
parent8afe3d5bd9a307c22902c09273e89729cf4469ce (diff)
prepare pre-alpha release
Diffstat (limited to 'all_test.go')
-rw-r--r--all_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/all_test.go b/all_test.go
index cd7a3fd..cc0447c 100644
--- a/all_test.go
+++ b/all_test.go
@@ -58,7 +58,6 @@ func init() {
// ============================================================================
var (
- memTrace = flag.Bool("memory.trace", false, "")
recsPerSec = flag.Bool("recs_per_sec_as_mbps", false, "Show records per second as MB/s.")
)
@@ -89,7 +88,7 @@ func TestScalar(t *testing.T) {
t2 := time.Date(2018, 5, 21, 2, 3, 4, 98765, time.UTC)
r, err := db.Exec(`
create table t(i int, f double, b bool, s text, t time);
- insert into t values(12, 3.14, ?, "foo", ?), (34, 2.78, ?, "bar", ?);
+ insert into t values(12, 3.14, ?, 'foo', ?), (34, 2.78, ?, 'bar', ?);
`,
true, t1,
false, t2,