| 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 | { |
nothing calls this directly
no test coverage detected