| 989 | |
| 990 | |
| 991 | bool Explain_node::print_explain_json_subq_materialization(Json_writer *writer, |
| 992 | bool is_analyze) |
| 993 | { |
| 994 | if (subq_materialization) |
| 995 | { |
| 996 | subq_materialization->print_explain_json(writer, is_analyze); |
| 997 | return true; |
| 998 | } |
| 999 | return false; |
| 1000 | } |
| 1001 | |
| 1002 | |
| 1003 | Explain_basic_join::~Explain_basic_join() |
nothing calls this directly
no test coverage detected