MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / serializeTextXML

Method serializeTextXML

src/DataTypes/Serializations/SerializationJSON.cpp:358–363  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

356
357template <typename Parser>
358void SerializationJSON<Parser>::serializeTextXML(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const
359{
360 WriteBufferFromOwnString buf;
361 serializeTextImpl(column, row_num, buf, settings);
362 writeXMLStringForTextElement(buf.str(), ostr);
363}
364
365template <typename Parser>
366void SerializationJSON<Parser>::serializeTextJSON(const IColumn & column, size_t row_num, WriteBuffer & ostr, const FormatSettings & settings) const

Callers

nothing calls this directly

Calls 3

serializeTextImplFunction · 0.70
strMethod · 0.45

Tested by

no test coverage detected