Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use newFramerWithExts instead of newFramer to utilize protocol extens…
…ions In order to utilize cql protocol extensions, we need to use `newFramerWithExts` instead of `newFramer`. Previously, during the upstream merging the code using `newFramer` was added (https://github.com/scylladb/gocql/pull/)109. That way, the `flagLWT` field was set to `0` by default, causing the driver to consider every query executed as a LWT query. The issue was not immediately noticed because the only difference in behavior occurs when we want to use `ShuffleReplicas()` in `TokenAwareHostPolicy`. This commit fixes that.
- Loading branch information