Define PrintTo for MyStruct
| 998 | |
| 999 | // Define PrintTo for MyStruct |
| 1000 | void PrintTo(const CaseConfig& param, std::ostream* os) { |
| 1001 | *os << "{ " << param.dtype->ToString(); |
| 1002 | if (param.is_nullable) { |
| 1003 | *os << " nullable"; |
| 1004 | } |
| 1005 | *os << " }"; |
| 1006 | } |
| 1007 | |
| 1008 | class TestCDCSingleRowGroup : public ::testing::TestWithParam<CaseConfig> { |
| 1009 | protected: |