| 651 | } |
| 652 | |
| 653 | inline std::string TestColumnName(int i) { |
| 654 | std::stringstream col_name; |
| 655 | col_name << "column_" << i; |
| 656 | return col_name.str(); |
| 657 | } |
| 658 | |
| 659 | // This class lives here because of its dependency on the InitValues specializations. |
| 660 | template <typename TestType> |
no test coverage detected