Skip to content

Commit

Permalink
Merge pull request #1414 from kuzudb/hash-index
Browse files Browse the repository at this point in the history
Fix hash index slot alignment
  • Loading branch information
ray6080 committed Mar 28, 2023
2 parents 9926e7f + 35a9576 commit 98a3349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.11)

project(Kuzu VERSION 0.0.4 LANGUAGES CXX)
project(Kuzu VERSION 0.0.3.1 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
3 changes: 1 addition & 2 deletions src/include/common/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ struct ListsMetadataConstants {

// Hash Index Configurations
struct HashIndexConstants {
static constexpr uint8_t SLOT_CAPACITY_LOG_2 = 2;
static constexpr uint8_t SLOT_CAPACITY = (uint64_t)1 << SLOT_CAPACITY_LOG_2;
static constexpr uint8_t SLOT_CAPACITY = 3;
};

struct CopyConstants {
Expand Down

0 comments on commit 98a3349

Please sign in to comment.