| 268 | } |
| 269 | |
| 270 | static void destroy_db(struct db *db) |
| 271 | { |
| 272 | db_assert_no_outstanding_statements(db); |
| 273 | |
| 274 | if (db->config->teardown_fn) |
| 275 | db->config->teardown_fn(db); |
| 276 | } |
| 277 | |
| 278 | static struct db_config *db_config_find(const struct db *db, const char *dsn) |
| 279 | { |
nothing calls this directly
no test coverage detected