MCPcopy Create free account
hub / github.com/bytedance/bolt / deserializeSources

Function deserializeSources

bolt/core/PlanNode.cpp:54–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54std::vector<PlanNodePtr> deserializeSources(
55 const folly::dynamic& obj,
56 void* context) {
57 if (obj.count("sources")) {
58 return ISerializable::deserialize<std::vector<PlanNode>>(
59 obj["sources"], context);
60 }
61
62 return {};
63}
64
65std::vector<TypedExprPtr> deserializeJoinConditions(
66 const folly::dynamic& obj,

Callers 2

deserializeSingleSourceFunction · 0.85
createMethod · 0.85

Calls 1

countMethod · 0.45

Tested by

no test coverage detected