Commit 26eb6664 authored by Sergei Petrunia's avatar Sergei Petrunia

Make Explain_node::children protected

parent 47802017
......@@ -121,11 +121,13 @@ class Explain_node : public Sql_alloc
*/
enum explain_connection_type connection_type;
protected:
/*
A node may have children nodes. When a node's explain structure is
created, children nodes may not yet have QPFs. This is why we store ids.
*/
Dynamic_array<int> children;
public:
void add_child(int select_no)
{
children.append(select_no);
......
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