Wrapper for find_select_handler_inner() for the case of single select pushdown. See more comments at the description of find_select_handler_inner() */
| 5279 | |
| 5280 | */ |
| 5281 | select_handler *find_single_select_handler(THD *thd, SELECT_LEX *select_lex) |
| 5282 | { |
| 5283 | return find_select_handler_inner(thd, select_lex, nullptr); |
| 5284 | } |
| 5285 | |
| 5286 | |
| 5287 | /** |
no test coverage detected