Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashleyhx committed Sep 12, 2023
1 parent 6ed50fb commit e43eea7
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 58 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.8.5 LANGUAGES CXX)
project(Kuzu VERSION 0.0.8.6 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
47 changes: 0 additions & 47 deletions package-lock.json

This file was deleted.

5 changes: 0 additions & 5 deletions package.json

This file was deleted.

4 changes: 2 additions & 2 deletions src/include/common/type_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class StringCastUtils {

if constexpr (std::is_same_v<int8_t, T>) {
int val;
iss >> val;
iss >> val; // C++ will recognize int8 as char if we don't separate this case.
result = val;
} else
iss >> result; // add condition for int8_t
iss >> result;

if (iss.fail() || !iss.eof()) {
return false;
Expand Down
1 change: 0 additions & 1 deletion src/include/common/types/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ KUZU_API enum class LogicalTypeID : uint8_t {
INT32 = 24,
INT16 = 25,
INT8 = 26,

DOUBLE = 27,
FLOAT = 28,
DATE = 29,
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.8.5", 19}, {"0.0.8.4", 19}, {"0.0.8.3", 19}, {"0.0.8.2", 19}, {"0.0.8.1", 18},
return {{"0.0.8.6", 20}, {"0.0.8.5", 19}, {"0.0.8.4", 19}, {"0.0.8.3", 19}, {"0.0.8.2", 19}, {"0.0.8.1", 18},
{"0.0.8", 17}, {"0.0.7.1", 16}, {"0.0.7", 15}, {"0.0.6.5", 14}, {"0.0.6.4", 13},
{"0.0.6.3", 12}, {"0.0.6.2", 11}, {"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},
Expand Down
2 changes: 1 addition & 1 deletion test/graph_test/graph_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void TestHelper::executeScript(const std::string& cypherScript, Connection& conn
std::cout << "Executed query: " << line << std::endl;
if (!result->isSuccess()) {
throw Exception(StringUtils::string_format(
"Failed to execute statement: {}.\nError: {}", line, result->getErrorMessage())); //
"Failed to execute statement: {}.\nError: {}", line, result->getErrorMessage()));
}
}
}
Expand Down

0 comments on commit e43eea7

Please sign in to comment.