| 321 | |
| 322 | |
| 323 | void SerializationSketch::deserializeTextJSON(IColumn & column, ReadBuffer & istr, const FormatSettings &) const |
| 324 | { |
| 325 | read(column, [&](ColumnSketchBinary::Chars & data) { |
| 326 | String encoded_string; |
| 327 | readJSONStringInto(encoded_string, istr); |
| 328 | String decodeString = decodeBase64(encoded_string); |
| 329 | data.insert(decodeString.begin(), decodeString.end()); |
| 330 | }); |
| 331 | } |
| 332 | |
| 333 | |
| 334 | void SerializationSketch::serializeTextXML(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings &) const |
nothing calls this directly
no test coverage detected