| 344 | } // namespace |
| 345 | |
| 346 | bool RecordBatch::Equals(const RecordBatch& other, bool check_metadata, |
| 347 | const EqualOptions& opts) const { |
| 348 | return Equals(other, opts.use_metadata(check_metadata)); |
| 349 | } |
| 350 | |
| 351 | bool RecordBatch::Equals(const RecordBatch& other, const EqualOptions& opts) const { |
| 352 | if (this == &other) { |
no test coverage detected