| 578 | } |
| 579 | |
| 580 | std::string toString(const MaterializedRow& row, const TypePtr& type) { |
| 581 | std::ostringstream oss; |
| 582 | printRow(row, type, oss); |
| 583 | return oss.str(); |
| 584 | } |
| 585 | |
| 586 | struct MaterializedRowEpsilonComparator { |
| 587 | public: |
no test coverage detected