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