(databaseType DatabaseType)
| 38 | } |
| 39 | |
| 40 | func UsingLogDatabase(databaseType DatabaseType) bool { |
| 41 | return logDatabaseType == databaseType |
| 42 | } |
| 43 | |
| 44 | // SQLitePath is the DSN for the default SQLite database. It uses WAL journal |
| 45 | // mode so readers are never blocked by the single writer, plus a 30s busy |
no outgoing calls
no test coverage detected