| 52 | |
| 53 | template <typename T> |
| 54 | void SerializationDecimal<T>::deserializeText(IColumn & column, ReadBuffer & istr, const FormatSettings &) const |
| 55 | { |
| 56 | T x; |
| 57 | readText(x, istr); |
| 58 | assert_cast<ColumnType &>(column).getData().push_back(x); |
| 59 | } |
| 60 | |
| 61 | template <typename T> |
| 62 | void SerializationDecimal<T>::deserializeTextCSV(IColumn & column, ReadBuffer & istr, const FormatSettings &) const |