| 176 | |
| 177 | template <typename Type> |
| 178 | void SerializationEnum<Type>::serializeTextCSV(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
| 179 | { |
| 180 | writeCSVString(ref_enum_values.getNameForValue(assert_cast<const ColumnType &>(column).getData()[row_num]), ostr); |
| 181 | } |
| 182 | |
| 183 | template <typename Type> |
| 184 | void SerializationEnum<Type>::deserializeTextCSV(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
nothing calls this directly
no test coverage detected