| 11117 | |
| 11118 | |
| 11119 | Item *LEX::create_item_qualified_asterisk(THD *thd, |
| 11120 | const Lex_ident_sys_st *name) |
| 11121 | { |
| 11122 | Item *item; |
| 11123 | if (!(item= new (thd->mem_root) Item_field(thd, current_context(), |
| 11124 | null_clex_str, *name, |
| 11125 | star_clex_str))) |
| 11126 | return NULL; |
| 11127 | current_select->parsing_place == IN_RETURNING ? |
| 11128 | thd->lex->returning()->with_wild_returning++ : |
| 11129 | current_select->with_wild++; |
| 11130 | return item; |
| 11131 | } |
| 11132 | |
| 11133 | |
| 11134 | Item *LEX::create_item_qualified_asterisk(THD *thd, |
nothing calls this directly
no test coverage detected