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
Panic in Batch.Column in case of invalid column index in b.batch.IsSend()
func test(conn driver.Conn) { b, err := conn.PrepareBatch(context.Background(), "INSERT INTO my_database.test") if err != nil { panic(err) } column := b.Column(1000) // invalid column index column.Append(nil) // nil dereference }
Please, assign it to me
The text was updated successfully, but these errors were encountered:
Assigned to you @EpicStep . Are you working on a fix?
Sorry, something went wrong.
@jkaflik yes, thanks
EpicStep
Successfully merging a pull request may close this issue.
Describe the bug
Panic in Batch.Column in case of invalid column index in b.batch.IsSend()
Code example
Please, assign it to me
The text was updated successfully, but these errors were encountered: