We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4780f commit 2c38f35Copy full SHA for 2c38f35
1 file changed
db/factory/store.go
@@ -21,9 +21,7 @@ func CreateStoreWithConfig(config util.DbConfig) db.Store {
21
case util.DbDriverBolt:
22
return bolt.CreateBoltDBWithConfig(config)
23
24
- case util.DbDriverMySQL:
25
- case util.DbDriverPostgres:
26
- case util.DbDriverSQLite:
+ case util.DbDriverMySQL, util.DbDriverPostgres, util.DbDriverSQLite:
27
return sql.CreateDbWithConfig(config)
28
29
default:
0 commit comments