This bug is simillar to mysql bug 36133 http://bugs.mysql.com/bug.php?id=36133
Taking changes from that fix.
- The problem was that the range optimizer evaluated constant expressions, and among them it would try to evaluate IN-subquery predicates slated for handling with materialization strategy. However, these predicates require that parent_join->setup_subquery_materialization() is invoked before one attempts to evaluate them.
- Fixed by making the range optimizer not to evaluate expressions that have item->is_expensive() == TRUE (these are materialization subqueries and stored function calls). This should also resolve the problem that EXPLAIN may be too long. This change cuts off some opportunities for range optimizer, but this is the price we're willing to pay for separation of query optimization and execution.