| 65 | }; |
| 66 | |
| 67 | void 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 | |
| 76 | void QueryPlan::serialize(WriteBuffer & out, const SerializationFlags & flags) const |
| 77 | { |
nothing calls this directly
no test coverage detected