| 554 | } |
| 555 | |
| 556 | void CompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 557 | bool compare_metadata, const EqualOptions& options) { |
| 558 | return CompareBatchWith( |
| 559 | left, right, compare_metadata, |
| 560 | [&](const Array& left, const Array& right) { return left.Equals(right, options); }); |
| 561 | } |
| 562 | |
| 563 | void ApproxCompareBatch(const RecordBatch& left, const RecordBatch& right, |
| 564 | bool compare_metadata, const EqualOptions& options) { |
no test coverage detected