| 40 | } |
| 41 | |
| 42 | void SerializationUUID::deserializeTextQuoted(IColumn & column, ReadBuffer & istr, const FormatSettings &) const |
| 43 | { |
| 44 | UUID x; |
| 45 | assertChar('\'', istr); |
| 46 | readText(x, istr); |
| 47 | assertChar('\'', istr); |
| 48 | assert_cast<ColumnUUID &>(column).getData().push_back(x); /// It's important to do this at the end - for exception safety. |
| 49 | } |
| 50 | |
| 51 | void SerializationUUID::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const |
| 52 | { |
nothing calls this directly
no test coverage detected