| 36 | } |
| 37 | |
| 38 | static int stmt_cache_finalize_entry_cb(void *stmt_entry, void *args) |
| 39 | { |
| 40 | (void)args; |
| 41 | return stmt_cache_finalize_entry(stmt_entry); |
| 42 | } |
| 43 | |
| 44 | /* Teardown statement cache */ |
| 45 | int stmt_cache_delete(stmt_cache_t *stmt_cache) |
nothing calls this directly
no test coverage detected