Skip to content

Commit

Permalink
Add element_type for array type (#129) (#141)
Browse files Browse the repository at this point in the history
Signed-off-by: yah01 <[email protected]>
  • Loading branch information
yah01 authored May 4, 2023
1 parent 680903b commit fb28059
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 73 deletions.
153 changes: 81 additions & 72 deletions go-api/schemapb/schema.pb.go

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

5 changes: 4 additions & 1 deletion proto/schema.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ message BytesArray { repeated bytes data = 1; }

message StringArray { repeated string data = 1; }

message ArrayArray { repeated ScalarField data = 1; }
message ArrayArray {
repeated ScalarField data = 1;
DataType element_type = 2;
}

message JSONArray { repeated bytes data = 1; }

Expand Down

0 comments on commit fb28059

Please sign in to comment.