MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / last_select

Method last_select

sql/sql_lex.h:864–870  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

862 st_select_lex* next_select() { return (st_select_lex*) next; }
863
864 st_select_lex* last_select()
865 {
866 st_select_lex* mylast= this;
867 for (; mylast->next_select(); mylast= mylast->next_select())
868 {}
869 return mylast;
870 }
871
872 st_select_lex* next_select_in_list()
873 {

Callers

nothing calls this directly

Calls 1

next_selectMethod · 0.80

Tested by

no test coverage detected