| 34 | const defaultTable = "micro" |
| 35 | |
| 36 | type sqlStore struct { |
| 37 | options store.Options |
| 38 | re *regexp.Regexp |
| 39 | sync.Mutex |
| 40 | // known databases |
| 41 | databases map[string]DB |
| 42 | } |
| 43 | |
| 44 | func (s *sqlStore) getDB(database, table string) (string, string) { |
| 45 | if len(database) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected