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

Method deserializeTextQuoted

src/DataTypes/Serializations/SerializationUUID.cpp:42–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void SerializationUUID::deserializeTextQuoted(IColumn & column, ReadBuffer & istr, const FormatSettings &) const
43{
44 UUID x;
45 assertChar('\'', istr);
46 readText(x, istr);
47 assertChar('\'', istr);
48 assert_cast<ColumnUUID &>(column).getData().push_back(x); /// It's important to do this at the end - for exception safety.
49}
50
51void SerializationUUID::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const
52{

Callers

nothing calls this directly

Calls 4

assertCharFunction · 0.85
readTextFunction · 0.70
push_backMethod · 0.45
getDataMethod · 0.45

Tested by

no test coverage detected