MCPcopy Create free account
hub / github.com/apache/arrow / EqualsInternal

Method EqualsInternal

cpp/src/parquet/schema.cc:117–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115}
116
117bool 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
124void Node::SetParent(const Node* parent) { parent_ = parent; }
125

Callers

nothing calls this directly

Calls 3

EqualsMethod · 0.45
fieldMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected