Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Attachments
Issue Links
- relates to
-
MDEV-334 [backport] Implement UNION ALL without usage of a temporary table (MWL#44)
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | In Progress [ 3 ] |
Fix Version/s | N/A [ 14700 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Workflow | MariaDB v2 [ 53202 ] | MariaDB v3 [ 61658 ] |
Workflow | MariaDB v3 [ 61658 ] | MariaDB v4 [ 132399 ] |
Investigation results:
EXPLAIN seems to be saved correclty. Explain_union data structure is actually
created, which would allow to print out the EXPLAIN output (provided that
Explain_union has a flag which says whether it's using the tem. table).
The problems start here:
#0 select_result::prepare (this=0x7ffebc848768, list=..., u=0xa5a5a5a5a5a5a5a5) at /home/psergey/dev2/10.1-union-all-look/sql/sql_class.h:3851
#1 0x000000000071fce7 in select_union_direct::postponed_prepare (this=0x7ffebc848e28, types=...) at /home/psergey/dev2/10.1-union-all-look/sql/sql_union.cc:210
#2 0x0000000000720cd8 in st_select_lex_unit::prepare (this=0x7ffeb9e65d78, thd_arg=0x7ffeb9e62070, sel_result=0x7ffebc848768, additional_options=268435460) at /home/psergey/dev2/10.1-union-all-look/sql/sql_union.cc:510
#3 0x00000000006c7f91 in mysql_explain_union (thd=0x7ffeb9e62070, unit=0x7ffeb9e65d78, result=0x7ffebc848768) at /home/psergey/dev2/10.1-union-all-look/sql/sql_select.cc:23776
#4 0x000000000065f37e in execute_sqlcom_select (thd=0x7ffeb9e62070, all_tables=0x7ffebc8472b0) at /home/psergey/dev2/10.1-union-all-look/sql/sql_parse.cc:5227
#5 0x0000000000657600 in mysql_execute_command (thd=0x7ffeb9e62070) at /home/psergey/dev2/10.1-union-all-look/sql/sql_parse.cc:2554
#6 0x0000000000661df6 in mysql_parse (thd=0x7ffeb9e62070, rawbuf=0x7ffebc847088 "explain select * from t1 union all select * from t2", length=51, parser_state=0x7ffeb2fa64b0) at /home/psergey/dev2/10.1-union-all-look/sql/sql_parse.cc:6409
The reason for this is:
(gdb) p this
$51 = (select_union_direct *) 0x7ffebc848e28
(gdb) p this->unit
$53 = (SELECT_LEX_UNIT *) 0xa5a5a5a5a5a5a5a5
select_union_direct::unit was never set.
Conceptually, it does not have a UNIT? OTOH, looking at the above stack trace: we are in
select_lex_unit::prepare(), which means there is a select_lex_unit