ccciudatu commented on code in PR #11938:
URL: https://github.com/apache/datafusion/pull/11938#discussion_r1716648030


##########
datafusion/proto/proto/datafusion.proto:
##########
@@ -1199,3 +1200,28 @@ message PartitionStats {
   int64 num_bytes = 3;
   repeated datafusion_common.ColumnStats column_stats = 4;
 }
+
+message FlightScanExecNode {
+  repeated FlightPartitionNode partitions = 1;
+  PlanPropertiesNode plan_properties = 2;
+  map<string, bytes> grpc_headers = 3;
+}
+
+message FlightPartitionNode {
+  repeated string locations = 1;
+  bytes token = 2;
+}
+
+message PlanPropertiesNode {
+  datafusion_common.Schema schema = 1;
+  repeated PhysicalSortExprNodeCollection output_ordering = 2;
+  Partitioning partitioning = 3;
+  ExecutionMode execution_mode = 4;
+}
+
+enum ExecutionMode {
+  Bounded = 0;
+  Unbonded = 1;

Review Comment:
   Just noticed this typo :(



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to