Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Mar 2, 2023
1 parent 7701266 commit 34e0e10
Show file tree
Hide file tree
Showing 2 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.3 LANGUAGES CXX)

find_package(Threads REQUIRED)

Expand Down
6 changes: 3 additions & 3 deletions test/runner/e2e_update_rel_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class UpdateRelTest : public DBTest {
}
std::string getUpdateRelQuery(std::string srcTable, std::string dstTable, std::string relation,
int64_t srcID, int64_t dstID, std::string setPropertyClause) {
return fmt::format(
"MATCH (p1:{})-[e:{}]->(p2:{}) WHERE p1.ID = {} AND p2.ID = {} " + setPropertyClause,
srcTable, relation, dstTable, srcID, dstID);
return fmt::format("MATCH (p1:{})-[e:{}]->(p2:{}) WHERE p1.ID = {} AND p2.ID = {} ",
srcTable, relation, dstTable, srcID, dstID) +
setPropertyClause;
}
std::string getInsertKnowsRelQuery(std::string srcTable, std::string dstTable, int64_t srcID,
int64_t dstID, int64_t lengthProp) {
Expand Down

0 comments on commit 34e0e10

Please sign in to comment.