| 702 | |
| 703 | |
| 704 | void Parser::Index_level_hint::append_args(THD *thd, String *str) const |
| 705 | { |
| 706 | if (is_empty()) // Empty list of index names, no additional info |
| 707 | return; |
| 708 | |
| 709 | bool first_index_name= true; |
| 710 | for (const Hint_param_index &index_name : *this) |
| 711 | { |
| 712 | if (!first_index_name) |
| 713 | str->append(STRING_WITH_LEN(",")); |
| 714 | Lex_ident_sys icli= index_name.to_ident_sys(thd); |
| 715 | append_identifier(thd, str, &icli); |
| 716 | first_index_name= false; |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | |
| 721 |
no test coverage detected