MCPcopy Create free account
hub / github.com/MariaDB/server / create_item_qualified_asterisk

Method create_item_qualified_asterisk

sql/sql_lex.cc:11119–11131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11117
11118
11119Item *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
11134Item *LEX::create_item_qualified_asterisk(THD *thd,

Callers

nothing calls this directly

Calls 2

returningMethod · 0.80
Lex_ident_sysClass · 0.70

Tested by

no test coverage detected