| 2018 | } |
| 2019 | |
| 2020 | LEX * sql_parser(char *query, char *default_db) { |
| 2021 | thd->reset_db(default_db, strlen(default_db)); |
| 2022 | if (dispatch_command(COM_QUERY, thd, query, (uint) strlen(query))) |
| 2023 | { |
| 2024 | return NULL; |
| 2025 | } |
| 2026 | return thd->lex; |
| 2027 | } |
| 2028 | |
| 2029 | int sql_parser_cleanup() |
| 2030 | { |
no test coverage detected