| 569 | } |
| 570 | |
| 571 | void ApproxCompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 572 | bool compare_metadata, const EqualOptions& options) { |
| 573 | return CompareBatchWith(left, right, compare_metadata, |
| 574 | [&](const Array& left, const Array& right) { |
| 575 | return left.ApproxEquals(right, options); |
| 576 | }); |
| 577 | } |
| 578 | |
| 579 | std::shared_ptr<Array> TweakValidityBit(const std::shared_ptr<Array>& array, |
| 580 | int64_t index, bool validity) { |
no test coverage detected