Commit 65151e0c authored by Monty's avatar Monty

Change stage_copying_to_tmp_table to stage_creating_tmp_table like in MySQL.

(We where using stage_copying_to_tmp_table twice)
parent 2f63e2e2
...@@ -2080,7 +2080,7 @@ int JOIN::init_execution() ...@@ -2080,7 +2080,7 @@ int JOIN::init_execution()
if (need_tmp && !exec_tmp_table1) if (need_tmp && !exec_tmp_table1)
{ {
DBUG_PRINT("info",("Creating tmp table")); DBUG_PRINT("info",("Creating tmp table"));
THD_STAGE_INFO(thd, stage_copying_to_tmp_table); THD_STAGE_INFO(thd, stage_creating_tmp_table);
init_items_ref_array(); init_items_ref_array();
......
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