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

Function writeFieldText

src/Core/Field.cpp:517–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515template void readQuoted<Decimal256>(DecimalField<Decimal256> & x, ReadBuffer & buf);
516
517void writeFieldText(const Field & x, WriteBuffer & buf)
518{
519 String res = Field::dispatch(FieldVisitorToString(), x);
520 buf.write(res.data(), res.size());
521}
522
523void writeFieldBinary(const Field & x, WriteBuffer & buf)
524{

Callers 2

fuzzJSONObjectFunction · 0.85
writeTextFunction · 0.85

Calls 4

writeMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected