Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Jul 21, 2023
1 parent 4ddfcea commit 1be05cf
Show file tree
Hide file tree
Showing 3 changed files with 4 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.6 LANGUAGES CXX)
project(Kuzu VERSION 0.0.6.1 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
1 change: 1 addition & 0 deletions src/include/catalog/catalog.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ class Catalog {
void addScalarMacroFunction(
std::string name, std::unique_ptr<function::ScalarMacroFunction> macro);

// TODO(Ziyi): pass transaction pointer here.
inline function::ScalarMacroFunction* getScalarMacroFunction(std::string name) const {
return catalogContentForReadOnlyTrx->macros.at(name).get();
}
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.6", 9}, {"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}};
return {{"0.0.6.1", 10}, {"0.0.6", 9}, {"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 1be05cf

Please sign in to comment.