Skip to content
New issue

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

Fix batch creation to match new gocql #35

Merged
merged 1 commit into from
May 26, 2020

Conversation

fruch
Copy link
Contributor

@fruch fruch commented May 26, 2020

gocql.NewBatch is now deprecated (and broken)
switching to use session.NewBatch

Fixes: #31

`gocql.NewBatch` is now deprecated (and broken)
switching to use `session.NewBatch`

Fixes: scylladb#31
@dahankzter dahankzter self-requested a review May 26, 2020 06:36
@@ -438,7 +438,7 @@ func DoBatchedWrites(session *gocql.Session, resultChannel chan Result, workload
request := fmt.Sprintf("INSERT INTO %s.%s (pk, ck, v) VALUES (?, ?, ?)", keyspaceName, tableName)

RunTest(resultChannel, workload, rateLimiter, func(rb *ResultBuilder) (error, time.Duration) {
batch := gocql.NewBatch(gocql.UnloggedBatch)
batch := session.NewBatch(gocql.UnloggedBatch)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes the old function should really be removed but upstream gocql doesn't really do semver so it is hard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

panic: runtime error: invalid memory address or nil pointer dereference
2 participants