Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ryogrid committed Sep 3, 2024
1 parent 9b6ee99 commit bdd89c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
- [x] B-tree Index [^1]
- Using [bltree-go-for-embedding](https://github.com/ryogrid/bltree-go-for-embedding) lib
- Concurrent access is supported
- Varchar typed column is not supported...
- [ ] Logging And Recovery Of Index Data
- [ ] JOIN
- [x] INNER JOIN (Hash Join, Index Join, Nested Loop Join)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ func InnerTestParallelTxnsQueryingIndexUsedColumns[T int32 | float32 | string](t
return
}

if indexKind == index_constants.INDEX_KIND_SKIP_LIST {
if indexKind == index_constants.INDEX_KIND_SKIP_LIST || indexKind == index_constants.INDEX_KIND_BTREE {
resultsLen := len(results)
var prevVal *types.Value = nil
for jj := 0; jj < resultsLen; jj++ {
Expand Down

0 comments on commit bdd89c4

Please sign in to comment.