| 331 | } |
| 332 | |
| 333 | bool CanIgnoreNaNInEquality(const RecordBatch& batch, const EqualOptions& opts) { |
| 334 | if (opts.nans_equal()) { |
| 335 | return true; |
| 336 | } else if (!ContainFloatType(*batch.schema())) { |
| 337 | return true; |
| 338 | } else { |
| 339 | return false; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | } // namespace |
| 344 |
no test coverage detected