| 1512 | |
| 1513 | |
| 1514 | void THD::end_statement() |
| 1515 | { |
| 1516 | /* Cleanup SQL processing state to reuse this statement in next query. */ |
| 1517 | lex_end(lex); |
| 1518 | delete lex->result; |
| 1519 | lex->result= 0; |
| 1520 | /* Note that free_list is freed in cleanup_after_query() */ |
| 1521 | |
| 1522 | /* |
| 1523 | Don't free mem_root, as mem_root is freed in the end of dispatch_command |
| 1524 | (once for any command). |
| 1525 | */ |
| 1526 | } |
| 1527 | |
| 1528 | |
| 1529 | void THD::set_n_backup_active_arena(Query_arena *set, Query_arena *backup) |