| 1677 | |
| 1678 | |
| 1679 | Statement_map::~Statement_map() |
| 1680 | { |
| 1681 | /* |
| 1682 | We do not want to grab the global LOCK_prepared_stmt_count mutex here. |
| 1683 | reset() should already have been called to maintain prepared_stmt_count. |
| 1684 | */ |
| 1685 | DBUG_ASSERT(st_hash.records == 0); |
| 1686 | |
| 1687 | my_hash_free(&names_hash); |
| 1688 | my_hash_free(&st_hash); |
| 1689 | } |
| 1690 | |
| 1691 | |
| 1692 | void Security_context::init() |
nothing calls this directly
no test coverage detected