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

Function deserializeQueryPlan

src/QueryPipeline/DistributedPlanExecutor.cpp:600–605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

598}
599
600static QueryPlan deserializeQueryPlan(const String & serialized_query_plan, ContextPtr context)
601{
602 ReadBufferFromString in(serialized_query_plan);
603 auto plan_and_sets = QueryPlan::deserialize(in, context);
604 return QueryPlan::makeSets(std::move(plan_and_sets), context);
605}
606
607void doExecuteTask(const DistributedQueryTaskDescription & task_description, ObjectStoragePtr object_storage,
608 const String & object_storage_path, const String & distributed_query_id, ContextMutablePtr context,

Callers 1

doExecuteTaskFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected