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

Function first_top_level_tab

sql/sql_select.cc:13076–13086  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13074
13075
13076JOIN_TAB *first_top_level_tab(JOIN *join, enum enum_with_const_tables const_tbls)
13077{
13078 JOIN_TAB *tab= join->join_tab;
13079 if (const_tbls == WITHOUT_CONST_TABLES)
13080 {
13081 if (join->const_tables == join->table_count || !tab)
13082 return NULL;
13083 tab += join->const_tables;
13084 }
13085 return tab;
13086}
13087
13088
13089JOIN_TAB *next_top_level_tab(JOIN *join, JOIN_TAB *tab)

Callers 2

get_fanout_with_depsFunction · 0.85
error_if_full_joinFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected