We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec5826 commit 526619dCopy full SHA for 526619d
query_executor.go
@@ -297,12 +297,7 @@ type queryOptions struct {
297
}
298
299
func newQueryOptions(q *Query, ctx context.Context) *queryOptions {
300
- var newPageState, newRoutingKey []byte
301
- if q.initialPageState != nil {
302
- pageState := q.initialPageState
303
- newPageState = make([]byte, len(pageState))
304
- copy(newPageState, pageState)
305
- }
+ var newRoutingKey []byte
306
if q.routingKey != nil {
307
routingKey := q.routingKey
308
newRoutingKey = make([]byte, len(routingKey))
0 commit comments