You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/queries.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -396,9 +396,9 @@ type RawRangeQuery struct {
396
396
// Inclusive start bound. This is the first key you would like to get data for.
397
397
//
398
398
// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
399
-
Start*[]byte`json:"start,omitempty"`
399
+
Start []byte`json:"start,omitempty"`
400
400
// Exclusive end bound. This is the key after the last key you would like to get data for.
401
-
End*[]byte`json:"end,omitempty"`
401
+
End []byte`json:"end,omitempty"`
402
402
// Maximum number of elements to return.
403
403
//
404
404
// Make sure to set a reasonable limit to avoid running out of memory or into the deserialization limits of the VM. Also keep in mind that these limitations depend on the full JSON size of the response type.
0 commit comments