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

Function find_partial_select_handler

sql/sql_select.cc:5300–5305  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

5298
5299*/
5300select_handler *
5301find_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/**

Callers 1

optimizeMethod · 0.85

Calls 1

Tested by

no test coverage detected