Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cpp/src/arrow/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ class ARROW_EXPORT NumericArray : public PrimitiveArray {
return PrimitiveArray::EqualsExact(static_cast<const PrimitiveArray&>(other));
}

bool ApproxEquals(const std::shared_ptr<Array>& arr) const { return Equals(arr); }
bool ApproxEquals(const std::shared_ptr<Array>& arr) const override {
return Equals(arr);
}

bool RangeEquals(int32_t start_idx, int32_t end_idx, int32_t other_start_idx,
const ArrayPtr& arr) const override {
Expand Down