MCPcopy Create free account
hub / github.com/ByConity/ByConity / deserializeText

Method deserializeText

src/DataTypes/Serializations/SerializationDecimal.cpp:54–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53template <typename T>
54void 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
61template <typename T>
62void SerializationDecimal<T>::deserializeTextCSV(IColumn & column, ReadBuffer & istr, const FormatSettings &) const

Callers

nothing calls this directly

Calls 3

readTextFunction · 0.70
push_backMethod · 0.45
getDataMethod · 0.45

Tested by

no test coverage detected