| 136 | |
| 137 | template <typename Type> |
| 138 | void SerializationEnum<Type>::serializeTextXML(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
| 139 | { |
| 140 | writeXMLStringForTextElement(ref_enum_values.getNameForValue(assert_cast<const ColumnType &>(column).getData()[row_num]), ostr); |
| 141 | } |
| 142 | |
| 143 | template <typename Type> |
| 144 | void SerializationEnum<Type>::deserializeTextJSON(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
nothing calls this directly
no test coverage detected