fix gocql.Query.WithContext retrun shallow copy bug

This commit is contained in:
Ken
2019-02-13 11:21:38 +08:00
committed by Michal Matczuk
parent 0b787f2f06
commit 2265c3fdbb

View File

@@ -86,7 +86,7 @@ func (q *Queryx) RoutingKey(routingKey []byte) *Queryx {
// query, queries will be canceled and return once the context is
// canceled.
func (q *Queryx) WithContext(ctx context.Context) *Queryx {
q.Query.WithContext(ctx)
q.Query = q.Query.WithContext(ctx)
return q
}