| 52 | } |
| 53 | |
| 54 | std::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 | |
| 65 | std::vector<TypedExprPtr> deserializeJoinConditions( |
| 66 | const folly::dynamic& obj, |
no test coverage detected