Skip to content

Commit

Permalink
solve the comment/ignore bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hououou committed Sep 29, 2023
1 parent 097cf61 commit f5554d9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions src/include/main/database.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include "common/api.h"
#include "common/constants.h"
#include "common/file_utils.h"
#include "kuzu_fwd.h"
namespace kuzu {
namespace main {
Expand Down
1 change: 0 additions & 1 deletion src/include/main/kuzu_fwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Catalog;
namespace common {
enum class StatementType : uint8_t;
class Value;
class FileInfo;
} // namespace common

namespace storage {
Expand Down
1 change: 0 additions & 1 deletion test/runner/test_locking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ TEST_F(LockingTest, testReadOnly) {
EXPECT_NO_THROW(createDBAndConn());
// we can query the database
ASSERT_TRUE(conn->query("MATCH (:Person) RETURN COUNT(*)")->isSuccess());
std::cout << " we can query the database \n";
// however, we can't perform DDL statements
EXPECT_ANY_THROW(conn->query("CREATE NODE TABLE university(ID INT64, PRIMARY KEY(ID))"));
EXPECT_ANY_THROW(conn->query("ALTER TABLE Peron DROP name"));
Expand Down

0 comments on commit f5554d9

Please sign in to comment.