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 0dbb007 commit a776163Copy full SHA for a776163
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# Release 2.3.5(2024-03-03)
2
+## 🐞 Bug Fixes
3
+* Fix index Less function panic.
4
+
5
# Release 2.3.4(2024-01-07)
6
7
## 🎄 Enhancements
index/btree.go
@@ -28,6 +28,9 @@ func newBTree() *MemoryBTree {
28
}
29
30
func (it *item) Less(bi btree.Item) bool {
31
+ if bi == nil {
32
+ return false
33
+ }
34
return bytes.Compare(it.key, bi.(*item).key) < 0
35
36
0 commit comments