First, we enter:
#0 JOIN::optimize (this=0x7fffc7276088) at /home/psergey/dev-git/10.1/sql/sql_select.cc:1022
this is "select * from v1"
select_lex->select_number=2
Then, we enter
JOIN::optimize (this=0x7fffc7274470)
This is "create vew v1 as select max
from t1"
select->select_number=2 (AGAIN!)
the inner JOIN::optimize() finishes, calls JOIN::save_explain_data() and saves
its plan under select_number==2.
The outer JOIN::optimizer(this=0x7fffc7276088) finishes, attepts to save its
query plan, sees that there is one already, and doesn't save.
Not saving the plan causes tracker counters not to be created, which later causes crash.
It crashes in this line
join_tab->tracker->r_scans++;
because join_tab->tracker==NULL. The only reason it could be NULL is that JOIN::save_explain_data() has not been called for this join.