Skip to content

Commit

Permalink
force reload dataset for benchmark runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ray6080 committed May 17, 2023
1 parent 8b27b98 commit 59a3673
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.3.3 LANGUAGES CXX)
project(Kuzu VERSION 0.0.3.4 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion src/include/storage/storage_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using storage_version_t = uint64_t;

struct StorageVersionInfo {
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
return {{"0.0.3.3", 4}, {"0.0.3.2", 3}, {"0.0.3.1", 2}, {"0.0.3", 1}};
return {{"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 59a3673

Please sign in to comment.