| 13 | |
| 14 | template <typename Type> |
| 15 | void SerializationEnum<Type>::serializeText(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
| 16 | { |
| 17 | writeString(ref_enum_values.getNameForValue(assert_cast<const ColumnType &>(column).getData()[row_num]), ostr); |
| 18 | } |
| 19 | |
| 20 | template <typename Type> |
| 21 | void SerializationEnum<Type>::serializeTextEscaped(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
nothing calls this directly
no test coverage detected