| 130 | |
| 131 | template <typename Type> |
| 132 | void SerializationEnum<Type>::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const |
| 133 | { |
| 134 | writeJSONString(ref_enum_values.getNameForValue(assert_cast<const ColumnType &>(column).getData()[row_num]), ostr, settings); |
| 135 | } |
| 136 | |
| 137 | template <typename Type> |
| 138 | void SerializationEnum<Type>::serializeTextXML(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
nothing calls this directly
no test coverage detected