prepare pre-alpha release

This commit is contained in:
Jan Mercl
2019-12-18 17:51:11 +01:00
parent 8afe3d5bd9
commit 0bd6d67fef
42 changed files with 1295028 additions and 609425 deletions

View File

@@ -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,