aboutsummaryrefslogtreecommitdiff
path: root/all_test.go
diff options
context:
space:
mode:
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,