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 e0cc25b commit 888c1c3Copy full SHA for 888c1c3
ffi/proofs.go
@@ -343,7 +343,7 @@ func (r *NextKeyRange) StartKey() []byte {
343
344
// HasEndKey returns true if this key range has an exclusive end key.
345
func (r *NextKeyRange) HasEndKey() bool {
346
- return r.endKey.HasValue()
+ return r.endKey != nil && r.endKey.HasValue()
347
}
348
349
// EndKey returns the exclusive end key of this key range if it exists or nil if
0 commit comments