zeroshade commented on code in PR #854:
URL: https://github.com/apache/arrow-adbc/pull/854#discussion_r1244161708
##########
go/adbc/utils/utils.go:
##########
@@ -30,7 +30,15 @@ func RemoveSchemaMetadata(schema *arrow.Schema)
*arrow.Schema {
func removeFieldMetadata(field *arrow.Field) arrow.Field {
fieldType := field.Type
- if nestedType, ok := field.Type.(arrow.NestedType); ok {
+ if ty, ok := field.Type.(*arrow.MapType); ok {
+ // XXX: this can't handle nonstandard field names or
Review Comment:
What was the actual issue that is being fixed?
--
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]