| 74 | } |
| 75 | |
| 76 | PlanNodePtr deserializeSingleSource(const folly::dynamic& obj, void* context) { |
| 77 | auto sources = deserializeSources(obj, context); |
| 78 | BOLT_CHECK_EQ(1, sources.size()); |
| 79 | |
| 80 | return sources[0]; |
| 81 | } |
| 82 | |
| 83 | PlanNodeId deserializePlanNodeId(const folly::dynamic& obj) { |
| 84 | return obj["id"].asString(); |
no test coverage detected