fix default go test (#717)
This commit is contained in:
parent
e373ddb271
commit
4e4538d99a
|
@ -22,7 +22,7 @@ var (
|
||||||
|
|
||||||
db = flag.String("db", "sqlite3", "the tested database")
|
db = flag.String("db", "sqlite3", "the tested database")
|
||||||
showSQL = flag.Bool("show_sql", true, "show generated SQLs")
|
showSQL = flag.Bool("show_sql", true, "show generated SQLs")
|
||||||
ptrConnStr = flag.String("conn_str", "", "test database connection string")
|
ptrConnStr = flag.String("conn_str", "./test.db?cache=shared&mode=rwc", "test database connection string")
|
||||||
mapType = flag.String("map_type", "snake", "indicate the name mapping")
|
mapType = flag.String("map_type", "snake", "indicate the name mapping")
|
||||||
cache = flag.Bool("cache", false, "if enable cache")
|
cache = flag.Bool("cache", false, "if enable cache")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue