| 9027 | |
| 9028 | |
| 9029 | bool Table_ident::append_to(THD *thd, String *str) const |
| 9030 | { |
| 9031 | return (db.length && |
| 9032 | (append_identifier(thd, str, db.str, db.length) || |
| 9033 | str->append('.'))) || |
| 9034 | append_identifier(thd, str, table.str, table.length); |
| 9035 | } |
| 9036 | |
| 9037 | |
| 9038 | bool Qualified_column_ident::append_to(THD *thd, String *str) const |
no test coverage detected