| 132 | } |
| 133 | |
| 134 | static void stmt_cache_free_entry(stmt_cache_entry_t *entry) |
| 135 | { |
| 136 | if (entry->query && gbl_debug_temptables) { |
| 137 | free(entry->query); |
| 138 | entry->query = NULL; |
| 139 | } |
| 140 | sqlite3_free(entry); |
| 141 | } |
| 142 | |
| 143 | static int stmt_cache_finalize_entry(stmt_cache_entry_t *entry) |
| 144 | { |
no test coverage detected