bool SchemaField::Equals()

in src/iceberg/schema_field.cc [59:62]


bool SchemaField::Equals(const SchemaField& other) const {
  return field_id_ == other.field_id_ && name_ == other.name_ && *type_ == *other.type_ &&
         optional_ == other.optional_;
}