Skip to content

Commit

Permalink
fix proto
Browse files Browse the repository at this point in the history
  • Loading branch information
duongcongtoai committed Oct 17, 2024
1 parent 8ed2563 commit 6ea0c93
Show file tree
Hide file tree
Showing 6 changed files with 198 additions and 229 deletions.
18 changes: 8 additions & 10 deletions datafusion/proto/proto/datafusion.proto
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ message CopyToNode {

message UnnestNode {
LogicalPlanNode input = 1;
repeated ColumnUnnestExec exec_columns = 2;
repeated datafusion_common.Column exec_columns = 2;
repeated ColumnUnnestListItem list_type_columns = 3;
repeated uint64 struct_type_columns = 4;
repeated uint64 dependency_indices = 5;
Expand All @@ -285,17 +285,15 @@ message ColumnUnnestListRecursion {
uint32 depth = 2;
}

message ColumnUnnestExec {
datafusion_common.Column column = 1;
oneof UnnestType {
ColumnUnnestListRecursions list = 2;
datafusion_common.EmptyMessage struct = 3;
datafusion_common.EmptyMessage inferred = 4;
}
}

message UnnestOptions {
bool preserve_nulls = 1;
repeated RecursionUnnestOption recursions = 2;
}

message RecursionUnnestOption {
datafusion_common.Column output_column = 1;
datafusion_common.Column input_column = 2;
uint32 depth = 3;
}

message UnionNode {
Expand Down
285 changes: 146 additions & 139 deletions datafusion/proto/src/generated/pbjson.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6ea0c93

Please sign in to comment.