zeroshade commented on issue #7895:
URL: https://github.com/apache/arrow-rs/issues/7895#issuecomment-3091018615
I'm in favor of @scovich's suggestion, and that is what I did for the Go
implementation along with my plan for defining the Canonical extension type.
The schema
```
STRUCT {
metadata: BINARY,
value: BINARY,
typed_value: STRUCT {
foo: STRUCT {
value: BINARY,
typed_value: Int64,
},
bar: STRUCT {
value: BINARY,
typed_value: Int32,
},
},
}
```
Will be required given the current design of the canonical extension type,
and providing
```
STRUCT {
metadata: BinaryView,
value: BinaryView,
typed_value: STRUCT {
foo: Int64,
bar: Int32
}
}
```
Would be an error.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]