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

Method include_global

sql/sql_lex.cc:3368–3374  ·  view source on GitHub ↗

including in global SELECT_LEX list */

Source from the content-addressed store, hash-verified

3366
3367/* including in global SELECT_LEX list */
3368void st_select_lex_node::include_global(st_select_lex_node **plink)
3369{
3370 if ((link_next= *plink))
3371 link_next->link_prev= &link_next;
3372 link_prev= plink;
3373 *plink= this;
3374}
3375
3376//excluding from global list (internal function)
3377void st_select_lex_node::fast_exclude()

Callers 3

alloc_selectMethod · 0.80
mysql_new_selectFunction · 0.80
wrap_tvcFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected