We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see the OCF Writer append function has the signature
func (ocfw *OCFWriter) Append(data interface{}) error
Inside this we are having a reflection based code to ensure this is of a slice type
goavro/array.go
Line 213 in 9f4e906
Why not change the parameter type to []interface{} ?
[]interface{}
The text was updated successfully, but these errors were encountered:
I am not aware of a compelling reason, but it does seem to be working. Have you discovered a bug that needs some attention?
Sorry, something went wrong.
No branches or pull requests
Context
I see the OCF Writer append function has the signature
Inside this we are having a reflection based code to ensure this is of a slice type
goavro/array.go
Line 213 in 9f4e906
Curious Question
Why not change the parameter type to
[]interface{}
?The text was updated successfully, but these errors were encountered: