| 115 | } |
| 116 | |
| 117 | bool Node::EqualsInternal(const Node* other) const { |
| 118 | return type_ == other->type_ && name_ == other->name_ && |
| 119 | repetition_ == other->repetition_ && converted_type_ == other->converted_type_ && |
| 120 | field_id_ == other->field_id() && |
| 121 | logical_type_->Equals(*(other->logical_type())); |
| 122 | } |
| 123 | |
| 124 | void Node::SetParent(const Node* parent) { parent_ = parent; } |
| 125 |