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

Method serialize

src/Processors/QueryPlan/Serialization.cpp:67–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65};
66
67void QueryPlan::serialize(WriteBuffer & out, size_t max_supported_version) const
68{
69 UInt64 version = std::min<UInt64>(max_supported_version, DBMS_QUERY_PLAN_SERIALIZATION_VERSION);
70 writeVarUInt(version, out);
71
72 SerializationFlags flags;
73 serialize(out, flags);
74}
75
76void QueryPlan::serialize(WriteBuffer & out, const SerializationFlags & flags) const
77{

Callers

nothing calls this directly

Calls 15

writeVarUIntFunction · 0.85
serializeFunction · 0.85
checkInitializedFunction · 0.85
writeStringBinaryFunction · 0.85
serializeHeaderFunction · 0.85
getStepDescriptionMethod · 0.80
hasOutputHeaderMethod · 0.80
getOutputHeaderMethod · 0.80
pushMethod · 0.45
emptyMethod · 0.45
getMethod · 0.45
frontMethod · 0.45

Tested by

no test coverage detected