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 cd0a1bc commit 34a1890Copy full SHA for 34a1890
query_executor.go
@@ -295,12 +295,7 @@ type queryOptions struct {
295
}
296
297
func newQueryOptions(q *Query, ctx context.Context) *queryOptions {
298
- var newPageState, newRoutingKey []byte
299
- if q.initialPageState != nil {
300
- pageState := q.initialPageState
301
- newPageState = make([]byte, len(pageState))
302
- copy(newPageState, pageState)
303
- }
+ var newRoutingKey []byte
304
if q.routingKey != nil {
305
routingKey := q.routingKey
306
newRoutingKey = make([]byte, len(routingKey))
0 commit comments