Skip to content

Commit

Permalink
Change page-list-group-size to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Jun 9, 2023
1 parent 322dab6 commit 61bb0b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.5 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion src/include/common/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct ListsMetadataConstants {
// PAGE_LIST_GROUP_SIZE + 1 each and chained together. In each piece, there are
// PAGE_LIST_GROUP_SIZE elements of that list and the offset to the next pageListGroups in the
// blob that contains all pageListGroups of all lists.
static constexpr uint32_t PAGE_LIST_GROUP_SIZE = 3;
static constexpr uint32_t PAGE_LIST_GROUP_SIZE = 20;
static constexpr uint32_t PAGE_LIST_GROUP_WITH_NEXT_PTR_SIZE = PAGE_LIST_GROUP_SIZE + 1;
};

Expand Down
4 changes: 2 additions & 2 deletions src/include/storage/storage_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ using storage_version_t = uint64_t;

struct StorageVersionInfo {
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
return {{"0.0.4", 7}, {"0.0.3.5", 6}, {"0.0.3.4", 5}, {"0.0.3.3", 4}, {"0.0.3.2", 3},
{"0.0.3.1", 2}, {"0.0.3", 1}};
return {{"0.0.5", 8}, {"0.0.4", 7}, {"0.0.3.5", 6}, {"0.0.3.4", 5}, {"0.0.3.3", 4},
{"0.0.3.2", 3}, {"0.0.3.1", 2}, {"0.0.3", 1}};
}

static storage_version_t getStorageVersion();
Expand Down

0 comments on commit 61bb0b3

Please sign in to comment.