| 459 | |
| 460 | |
| 461 | void SerializationArray::deserializeText(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
| 462 | { |
| 463 | deserializeTextImpl(column, istr, |
| 464 | [&](IColumn & nested_column) |
| 465 | { |
| 466 | nested->deserializeTextQuoted(nested_column, istr, settings); |
| 467 | }, false); |
| 468 | } |
| 469 | |
| 470 | void SerializationArray::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const |
| 471 | { |
nothing calls this directly
no test coverage detected