| 27 | static int stmt_cache_finalize_entry(stmt_cache_entry_t *entry); |
| 28 | |
| 29 | static int query_data_func(struct sqlclntstate *clnt, void **data, int *sz, |
| 30 | int type, int op) |
| 31 | { |
| 32 | if (clnt->plugin.query_data_func) |
| 33 | return clnt->plugin.query_data_func(clnt, data, sz, type, op); |
| 34 | else |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | static int stmt_cache_finalize_entry_cb(void *stmt_entry, void *args) |
| 39 | { |
no outgoing calls
no test coverage detected