| 163 | } |
| 164 | |
| 165 | void AssertBatchesApproxEqual(const RecordBatch& expected, const RecordBatch& actual, |
| 166 | const EqualOptions& options) { |
| 167 | AssertTsSame(expected, actual, |
| 168 | [&](const RecordBatch& expected, const RecordBatch& actual) { |
| 169 | return expected.ApproxEquals(actual, options); |
| 170 | }); |
| 171 | } |
| 172 | |
| 173 | void AssertChunkedEqual(const ChunkedArray& expected, const ChunkedArray& actual, |
| 174 | const EqualOptions& options) { |
no test coverage detected