Commit 1b69b763 authored by unknown's avatar unknown

Sync string in EXPLAIN code with phrasing of manual (subquery, not subselect).

parent ba2cf4e3
...@@ -8100,9 +8100,9 @@ int mysql_explain_union(THD *thd, SELECT_LEX_UNIT *unit, select_result *result) ...@@ -8100,9 +8100,9 @@ int mysql_explain_union(THD *thd, SELECT_LEX_UNIT *unit, select_result *result)
((sl == first)? ((sl == first)?
((sl->linkage == DERIVED_TABLE_TYPE) ? ((sl->linkage == DERIVED_TABLE_TYPE) ?
"DERIVED": "DERIVED":
((sl->dependent)?"DEPENDENT SUBSELECT": ((sl->dependent)?"DEPENDENT SUBQUERY":
(sl->uncacheable?"UNCACHEABLE SUBSELECT": (sl->uncacheable?"UNCACHEABLE SUBQUERY":
"SUBSELECT"))): "SUBQUERY"))):
((sl->dependent)?"DEPENDENT UNION": ((sl->dependent)?"DEPENDENT UNION":
sl->uncacheable?"UNCACHEABLE UNION": sl->uncacheable?"UNCACHEABLE UNION":
"UNION"))), "UNION"))),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment