Wrapper for find_select_handler_inner() for the case of partial select pushdown. Partial pushdown means that a unit (i.e. multiple selects combined with UNION/EXCEPT/INTERSECT operators) cannot be pushed down to the storage engine as a whole but some particular selects of this unit can. For example, SELECT a FROM federated.t1 -- can be pushed down to Federated UNION SELECT b F
| 5298 | |
| 5299 | */ |
| 5300 | select_handler * |
| 5301 | find_partial_select_handler(THD *thd, SELECT_LEX *select_lex, |
| 5302 | SELECT_LEX_UNIT *select_lex_unit) |
| 5303 | { |
| 5304 | return find_select_handler_inner(thd, select_lex, select_lex_unit); |
| 5305 | } |
| 5306 | |
| 5307 | |
| 5308 | /** |
no test coverage detected