storage/sql: add garbage collection method

This commit is contained in:
Eric Chiang
2016-10-12 18:48:09 -07:00
parent c14ab3c44e
commit 9ce05ecf73
5 changed files with 24 additions and 111 deletions

View File

@@ -54,7 +54,7 @@ func TestSQLite3(t *testing.T) {
}
withTimeout(time.Second*10, func() {
conformance.RunTestSuite(t, newStorage)
conformance.RunTests(t, newStorage)
})
}
@@ -85,6 +85,6 @@ func TestPostgres(t *testing.T) {
return conn
}
withTimeout(time.Minute*1, func() {
conformance.RunTestSuite(t, newStorage)
conformance.RunTests(t, newStorage)
})
}