zeroshade commented on issue #41284: URL: https://github.com/apache/arrow/issues/41284#issuecomment-2064142518
Could you just use the existing interface https://pkg.go.dev/github.com/apache/arrow/go/[email protected]/arrow/array#NewStructArray to create your struct array? ```go newStruct, err := array.NewStructArray(internalCols, []string{"a", "b", "c", "d"....}) ``` -- 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]
