MCPcopy Create free account
hub / github.com/apache/arrow / Validate

Method Validate

cpp/src/arrow/acero/exec_plan.cc:86–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84 }
85
86 Status Validate() const {
87 if (nodes_.empty()) {
88 return Status::Invalid("ExecPlan has no node");
89 }
90 for (const auto& node : nodes_) {
91 RETURN_NOT_OK(node->Validate());
92 }
93 return Status::OK();
94 }
95
96 void StartProducing() {
97 if (finished_.is_finished()) {

Callers

nothing calls this directly

Calls 4

InvalidFunction · 0.50
OKFunction · 0.50
emptyMethod · 0.45
ValidateMethod · 0.45

Tested by

no test coverage detected