| 10709 | |
| 10710 | |
| 10711 | bool LEX::add_grant_command(THD *thd, const List<LEX_COLUMN> &columns) |
| 10712 | { |
| 10713 | if (columns.elements) |
| 10714 | { |
| 10715 | thd->parse_error(); |
| 10716 | return true; |
| 10717 | } |
| 10718 | return false; |
| 10719 | } |
| 10720 | |
| 10721 | |
| 10722 | Item *LEX::make_item_func_sysdate(THD *thd, uint fsp) |
nothing calls this directly
no test coverage detected