| 75 | } |
| 76 | |
| 77 | void SetPlan(const SubstraitPlan& plan, flight_sql_pb::SubstraitPlan* pb_plan) { |
| 78 | pb_plan->set_plan(plan.plan); |
| 79 | pb_plan->set_version(plan.version); |
| 80 | } |
| 81 | |
| 82 | Status ReadResult(ResultStream* results, google::protobuf::Message* message) { |
| 83 | ARROW_ASSIGN_OR_RAISE(auto result, results->Next()); |
no outgoing calls
no test coverage detected