| 92 | } |
| 93 | |
| 94 | void SerializationTime::deserializeTextQuoted(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
| 95 | { |
| 96 | Decimal64 x = 0; |
| 97 | assertChar('\'', istr); |
| 98 | readText(x, scale, istr, settings); |
| 99 | checkNumberOverflow(settings); |
| 100 | assertChar('\'', istr); |
| 101 | assert_cast<ColumnType &>(column).getData().push_back(x); /// It's important to do this at the end - for exception safety. |
| 102 | } |
| 103 | |
| 104 | void SerializationTime::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const |
| 105 | { |
nothing calls this directly
no test coverage detected