| 562 | } |
| 563 | |
| 564 | void CompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 565 | bool compare_metadata, const EqualOptions& options) { |
| 566 | return CompareBatchWith( |
| 567 | left, right, compare_metadata, |
| 568 | [&](const Array& left, const Array& right) { return left.Equals(right, options); }); |
| 569 | } |
| 570 | |
| 571 | void ApproxCompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 572 | bool compare_metadata, const EqualOptions& options) { |
no test coverage detected