| 561 | } |
| 562 | |
| 563 | void ApproxCompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 564 | bool compare_metadata, const EqualOptions& options) { |
| 565 | return CompareBatchWith(left, right, compare_metadata, |
| 566 | [&](const Array& left, const Array& right) { |
| 567 | return left.ApproxEquals(right, options); |
| 568 | }); |
| 569 | } |
| 570 | |
| 571 | std::shared_ptr<Array> TweakValidityBit(const std::shared_ptr<Array>& array, |
| 572 | int64_t index, bool validity) { |
no test coverage detected