\brief Determine if two record batches are approximately equal \param[in] other the RecordBatch to compare with \param[in] opts the options for equality comparisons \return true if batches are approximately equal
| 141 | /// \param[in] opts the options for equality comparisons |
| 142 | /// \return true if batches are approximately equal |
| 143 | bool ApproxEquals(const RecordBatch& other, |
| 144 | const EqualOptions& opts = EqualOptions::Defaults()) const { |
| 145 | return Equals(other, opts.use_schema(false).use_atol(true)); |
| 146 | } |
| 147 | |
| 148 | /// \return the record batch's schema |
| 149 | const std::shared_ptr<Schema>& schema() const { return schema_; } |
no test coverage detected