Expanded New-Style Optimizer Hints
Description
Each individual hint is hint name and arguments. In case there are no arguments, the () parentheses are still present:
hint: hint_name([arguments])Incorrect hints produce warnings (a setting to make them errors is not implemented yet).
Hints that are not ignored are kept in the query text (you can see them in SHOW PROCESSLIST, Slow Query Log, EXPLAIN EXTENDED). Hints that were incorrect and were ignored are removed from there.
Hint Hierarchy
Hints can be:
global - they apply to whole query;
table-level - they apply to a table;
index-level - they apply to an index in a table.
Table-Level Hints
hint_name([table_name [table_name [,...]] )Index-Level Hints
Index-level hints apply to indexes. Possible syntax variants are:
Effect of Optimizer Hints
The optimizer can be controlled by
server variables - optimizer_switch, join_cache_level, and so forth;
old-style hints;
new-style hints.
Old-style hints do not overlap with server variable settings.
New-style hints are more specific than server variable settings, so they override the server variable settings.
Hints are "narrowly interpreted" and "best effort" - if a hint dictates to do something, for example:
It means: When considering a query plan that involves using t1_index1 in a way that one can use MRR, use MRR. If the query planning is such that use of t1_index1 doesn't allow to use MRR, it won't be used.
The optimizer may also consider using t1_index2 and pick that over using t1_index1. In such cases, the hint is effectively ignored and no warning is given.
Query Block Naming
The QB_NAME hint is used to assign a name to the query block the hint is in. The Query block is either a SELECT statement or a top-level construct of an UPDATE or DELETE statement.
The name can then can be used
to refer to the query block;
to refer to a table in the query block as
table_name@query_block_name.
Query block scope is the whole statement. It is invalid to use the same name for multiple query blocks. You can refer to the query block "down into subquery", "down into derived table", "up to the parent" and "to a right sibling in the UNION". You cannot refer "to a left sibling in a UNION".
Hints inside views are not supported, yet. You can neither use hints in VIEW definitions, nor control query plans inside non-merged views. (This is because QB_NAME binding are done "early", before we know that some tables are views.)
SELECT#N NAMES
Besides the given name, any query block is given a name select#n (where #n stands for a number). You can see it when running EXPLAIN EXTENDED:
It is not possible to use it in the hint text:
QB_NAME in CTEs
Hints that control @name will control the first use of the CTE (common table expression).
Available Expanded Optimizer Hints
NO_ROWID_FILTER
Does not consider ROWID filter for the scope of the hint (all tables in the query block, specific table, and specific indexes). See ROWID_FILTER for details.
NO_SPLIT_MATERIALIZED
When a derived table is materialized, MariaDB processes and stores the results of that derived table temporarily before joining it with other tables. The "lateral derived" optimization specifically looks for ways to optimize these types of derived tables. It does that by pushing a splitting condition down into the derived table, to limit the number of rows materialized into the derived table. The SPLIT_MATERIALIZED hint forces this behavior, while NO_SPLIT_MATERIALIZED prevents it.
NO_SPLIT_MATERIALIZED(X) disables the use of split-materialized optimization in the context of X :
ROWID_FILTER
Like NO_RANGE_OPTIMIZATION or MRR, this hint can be applied to:
Query blocks —
NO_ROWID_FILTER()Table —
NO_ROWID_FILTER(table_name)Specific indexes —
NO_ROWID_FILTER(table_name index1 index2 ...)
Forces the use of ROWID_FILTER for the table index it targets:
For query blocks and tables, it enables the use of the
ROWIDfilter, assuming it is disabled globally.For indexes, it forces its use, regardless of the costs. The following query forces the use of the
ROWIDfilter made fromt1.idx1if the chosen plan allows so (that is, if the access method tot1allows it):
Assuming the optimizer would pick idx2 for table t1 if the hint was not used, this could result in the usage of both idx2 and idx1 if the hint is used. That might become more expensive than a full table scan, or result in a change of the join order.
Therefore, do not "blindly" use this filter, but rather make sure its use doesn't have a negative impact as described.
SPLIT_MATERIALIZED
When a derived table is materialized, MariaDB processes and stores the results of that derived table temporarily before joining it with other tables. The "lateral derived" optimization specifically looks for ways to optimize these types of derived tables. It does that by pushing a splitting condition down into the derived table, to limit the number of rows materialized into the derived table. The SPLIT_MATERIALIZED hint forces this behavior, while NO_SPLIT_MATERIALIZED prevents it.
SPLIT_MATERIALIZED(X) enables and forces the use of split-materialized optimization in the context of X, unless it is impossible to do (for instance, because a table is not a materialized derived table).
Hints are placed after the main statement verb.
They can also appear after the SELECT keyword in any subquery:
There can be one or more hints separated with space:
JOIN_INDEX and NO_JOIN_INDEX
An index-level hint that enables or disables the specified indexes for an access method (range, ref, etc.). Equivalent to FORCE INDEX FOR JOIN and IGNORE INDEX FOR JOIN.
GROUP_INDEX and NO_GROUP_INDEX
An index-level hint that enables or disables the specified indexes for index scans for GROUP BY operations. Equivalent to FORCE INDEX FOR GROUP BY and IGNORE INDEX FOR GROUP BY.
ORDER_INDEX and NO_ORDER_INDEX
An index-level hint that enables or disables the specified indexes for sorting rows. Equivalent to FORCE INDEX FOR ORDER BY and IGNORE INDEX FOR ORDER BY.
INDEX and NO_INDEX
An index-level hint that enables or disables the specified indexes, for all scopes (join access method, GROUP BY, or sorting). Equivalent to FORCE INDEX and IGNORE INDEX.
Syntax
Behavior
The hints operate by modifying the set of keys the optimizer considers for SELECT statements. The specific behavior depends on whether specific index keys are provided within the hint.
INDEX_MERGE and NO_INDEX_MERGE
The INDEX_MERGE and NO_INDEX_MERGE optimizer hints provide granular control over the optimizer's use of index merge strategies. They allow users to override the optimizer's cost-based calculations and global switch settings, to force or prevent the merging of indexes for specific tables.
Syntax
Behavior
The hints operate by modifying the set of keys the optimizer considers for merge operations. The specific behavior depends on whether specific index keys are provided within the hint.
INDEX_MERGE Hint
This hint instructs the optimizer to employ an index merge strategy.
Without arguments: When specified as
INDEX_MERGE(tbl), the optimizer considers all available keys for that table and selects the cheapest index merge combination.With specific keys: When specified with keys, for instance,
INDEX_MERGE(tbl key1, key2), the optimizer considers only the listed keys for the merge operation. All other keys are excluded from consideration for index merging.
NO_INDEX_MERGE Hint
This hint instructs the optimizer to avoid index merge strategies.
Without arguments: When specified as
NO_INDEX_MERGE(tbl), index merge optimizations are completely disabled for the specified table.With specific keys: When specified with keys, for instance,
NO_INDEX_MERGE(tbl key1), the listed keys are excluded from consideration. The optimizer may still perform a merge using other available keys. However, if excluding the listed keys leaves insufficient row-ordered retrieval (ROR) scans available, no merge is performed.
Algorithm Selection and Limitations
While these hints control which keys are candidates for merging, they do not directly dictate the specific merge algorithm (Intersection, Union, or Sort-Union).
Indirect Control: You can influence the strategy indirectly by combining these hints with optimizer_switch settings, but specific algorithm selection is not guaranteed.
Invalid Hints: If a hint directs the optimizer to use specific indexes, but those indexes do not provide sufficient ROR scans to form a valid plan, the server is unable to honor the hint. in this scenario, the server emits a warning.
Examples
In the following examples, the index_merge_intersection switch is globally disabled. However, the INDEX_MERGE hint forces the optimizer to consider specific keys (f2 and f4), resulting in an intersection strategy.
You can see that we disable intersection with NO_INDEX_MERGE for the following query and the behavior reflects in the EXPLAIN output. The query after that shows with the hint enabling merge–an intersection of f3,f4 is used. In the last example, a different intersection is used: f3,PRIMARY.
No intersection (no merged indexes):
Intersection of keys f3, f4:
Intersection of keys PRIMARY, f3:
NO_RANGE_OPTIMIZATION
An index-level hint that disables range optimization for certain index(es):
NO_ICP
An index-level hint that disables Index Condition Pushdown for the indexes. ICP+BKA is disabled as well.
MRR and NO_MRR
Index-level hints to force or disable use of MRR.
This controls:
MRR optimization for range access;
BKA.
BKA() and NO_BKA()
Query block or table-level hints.
BKA() also enables MRR to make BKA possible. (This is different from session variables, where you need to enable MRR separately). This also enables BKAH.
BNL() and NO_BNL()
Controls BNL-H.
The implementation is "BNL() hint effectively increases join_cache_level up to 4 " .. for the table(s) it applies to.
MAX_EXECUTION_TIME()
Global-level hint to limit query execution time
A query that doesn't finish in the time specified will be aborted with an error.
If @@max_statement_time is set, the hint will be ignored and a warning produced. Note that this contradicts the stated principle that "new-style hints are more specific than server variable settings, so they override the server variable settings".
SPLIT_MATERIALIZED(X) and NO_SPLIT_MATERIALIZED(X)
Enables or disables the use of the Split Materialized Optimization (also called the Lateral Derived Optimization).
DERIVED_CONDITION_PUSHDOWN and NO_DERIVED_CONDITION_PUSHDOWN
Enables or disables the use of condition pushdown for derived tables.
MERGE and NO_MERGE
Table-level hint that enables the use of merging, or disables and uses materialization, for the specified tables, views or common table expressions.
SUBQUERY
Query block-level hint.
This controls non-semi-join subqueries. The parameter specifies which subquery to use. Use of this hint disables conversion of subquery into semi-join.
For details, see the Subquery Hints section.
SEMIJOIN and NO_SEMIJOIN
Query block-level hints.
This controls the conversion of subqueries to semi-joins and which semi-join strategies are allowed.
where the strategy is one of DUPSWEEDOUT, FIRSTMATCH, LOOSESCAN, MATERIALIZATION.
Hints are placed after the main statement verb.
They can also appear after the SELECT keyword in any subquery:
There can be one or more hints separated with space:
Join Order Hints
Syntax of the JOIN_FIXED_ORDER hint:
Syntax of other join-order hints:
Available Join Order Hints
For the following join order hint syntax,
tblis the name of a table used in the statement. A hint that names tables applies to all tables that it names. TheJOIN_FIXED_ORDERhint names no tables and applies to all tables in theFROMclause of the query block in which it occurs;query_block_nameis the query block to which the hint applies. If the hint includes no leading@query_block_name, it applies to the query block in which it occurs. When using thetbl@query_block_namesyntax, the hint applies to the named table in the named query block. To assign a name to a query block, see Optimizer Hints for Naming Query Blocks.
General notes:
If a table has an alias, hints must refer to the alias, not the table name.
Table names in hints cannot be qualified with schema names.
JOIN_FIXED_ORDER([@query_block_name])
JOIN_FIXED_ORDER([@query_block_name])Forces the optimizer to join tables using the order in which they appear in the FROM clause. This is the same as specifying SELECT STRAIGHT_JOIN.
JOIN_ORDER([@query_block_name] tbl [, tbl] ...)
JOIN_ORDER([@query_block_name] tbl [, tbl] ...)Instructs the optimizer to join tables using the specified table order. The hint applies to the named tables. The optimizer may place tables that are not named anywhere in the join order, including between specified tables.
Alternative syntax:
JOIN_ORDER(tbl[@query_block_name] [, tbl[@query_block_name]] ...)
JOIN_PREFIX([@query_block_name] tbl [, tbl] ...)
JOIN_PREFIX([@query_block_name] tbl [, tbl] ...)Instructs the optimizer to join tables using the specified table order for the first tables of the join execution plan. The hint applies to the named tables. The optimizer places all other tables after the named tables.
Alternative syntax:
JOIN_PREFIX(tbl[@query_block_name] [, tbl[@query_block_name]] ...)
JOIN_SUFFIX([@query_block_name] tbl [, tbl] ...)
JOIN_SUFFIX([@query_block_name] tbl [, tbl] ...)Instructs the optimizer to join tables using the specified table order for the last tables of the join execution plan. The hint applies to the named tables. The optimizer places all other tables before the named tables.
Subquery Hints
Overview
Subquery hints determine:
If semijoin transformations are to be used;
Which semijoin strategies are permitted;
When semijoins are not used, whether to use subquery materialization or
IN-to-EXISTStransformations.
Syntax
hint_name: The following hint names are permitted to enable or disable the named semijoin strategies:SEMIJOIN,NO_SEMIJOIN.strategy: Enable or disable a semi-join strategy. The following strategy names are permitted:DUPSWEEDOUT,FIRSTMATCH,LOOSESCAN,MATERIALIZATION.
Strategies
For SEMIJOIN hints, if no strategies are named, semi-join is used based on the strategies enabled according to the optimizer_switch system variable, if possible. If strategies are named, but inapplicable for the statement, DUPSWEEDOUT is used.
For NO_SEMIJOIN hints, semi-join is not used if no strategies are named. If named strategies rule out all applicable strategies for the statement, DUPSWEEDOUT is used.
If a subquery is nested within another, and both are merged into a semi-join of an outer query, any specification of semi-join strategies for the innermost query are ignored. SEMIJOIN and NO_SEMIJOIN hints can still be used to enable or disable semi-join transformations for such nested subqueries.
If DUPSWEEDOUT is disabled, the optimizer may generate a query plan that is far from optimal.
Examples
Syntax of hints that affect whether to use subquery materialization or IN-to-EXISTS transformations:
The hint name is always SUBQUERY.
For SUBQUERY hints, these strategy values are permitted: INTOEXISTS, MATERIALIZATION.
For semi-join and SUBQUERY hints, a leading @query_block_name specifies the query block to which the hint applies. If the hint includes no leading @query_block_name, the hint applies to the query block in which it occurs. To assign a name to a query block, see Naming Query Blocks.
If a hint comment contains multiple subquery hints, the first is used. If there are other following hints of that type, they produce a warning. Following hints of other types are silently ignored.
Last updated
Was this helpful?

