fix default go test (#717)

This commit is contained in:
Lunny Xiao 2017-09-10 14:29:02 +08:00 committed by GitHub
parent e373ddb271
commit 4e4538d99a
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ var (
db = flag.String("db", "sqlite3", "the tested database")
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")
cache = flag.Bool("cache", false, "if enable cache")
)