From bdd89c4a15d53a74fba55380690b6e32b181ec03 Mon Sep 17 00:00:00 2001 From: Ryo Kanbayashi Date: Tue, 3 Sep 2024 21:34:37 +0900 Subject: [PATCH] Update README.md --- README.md | 1 + .../executors/executor_test/skiplist_index_executor_test.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ca123b5b..81242cec 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/lib/execution/executors/executor_test/skiplist_index_executor_test.go b/lib/execution/executors/executor_test/skiplist_index_executor_test.go index fc9dc603..e7cf2e87 100644 --- a/lib/execution/executors/executor_test/skiplist_index_executor_test.go +++ b/lib/execution/executors/executor_test/skiplist_index_executor_test.go @@ -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++ {