| 674 | } |
| 675 | |
| 676 | bool MaterializedRowEpsilonComparator::equalWithEpsilon( |
| 677 | const MaterializedRow& lhs, |
| 678 | const MaterializedRow& rhs) const { |
| 679 | if (lhs.size() != rhs.size()) { |
| 680 | return false; |
| 681 | } |
| 682 | auto size = lhs.size(); |
| 683 | for (auto i = 0; i < size; ++i) { |
| 684 | if (!lhs[i].equalsWithEpsilon(rhs[i])) { |
| 685 | return false; |
| 686 | } |
| 687 | } |
| 688 | return true; |
| 689 | } |
| 690 | |
| 691 | std::string makeErrorMessage( |
| 692 | const std::vector<MaterializedRow>& missingRows, |
nothing calls this directly
no test coverage detected