| 261 | |
| 262 | |
| 263 | static void destroy_db(struct db *db) |
| 264 | { |
| 265 | db_assert_no_outstanding_statements(db); |
| 266 | |
| 267 | if (db->config->teardown_fn) |
| 268 | db->config->teardown_fn(db); |
| 269 | } |
| 270 | |
| 271 | static struct db_config *db_config_find(const char *dsn) |
| 272 | { |
nothing calls this directly
no test coverage detected