| 109 | // Base node |
| 110 | |
| 111 | const std::shared_ptr<ColumnPath> Node::path() const { |
| 112 | // TODO(itaiin): Cache the result, or more precisely, cache ->ToDotString() |
| 113 | // since it is being used to access the leaf nodes |
| 114 | return ColumnPath::FromNode(*this); |
| 115 | } |
| 116 | |
| 117 | bool Node::EqualsInternal(const Node* other) const { |
| 118 | return type_ == other->type_ && name_ == other->name_ && |
no outgoing calls