| 2027 | } |
| 2028 | |
| 2029 | int sql_parser_cleanup() |
| 2030 | { |
| 2031 | thd->end_statement(); |
| 2032 | thd->cleanup_after_query(); |
| 2033 | free_root(thd->mem_root,MYF(MY_KEEP_PREALLOC)); |
| 2034 | DBUG_ASSERT(thd->change_list.is_empty()); |
| 2035 | return 0; |
| 2036 | } |
| 2037 | |
| 2038 | int mysqld_cleanup() { |
| 2039 | clean_up(1); |
no test coverage detected