Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfengHKU committed Apr 30, 2024
1 parent f4eddd3 commit 83d819d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/binder/bind/bind_export_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static std::vector<ExportedTableData> getExportInfo(const Catalog& catalog, Tran
Binder* binder) {
std::vector<ExportedTableData> exportData;
for (auto tableEntry : catalog.getTableEntries(tx)) {
if (catalog.tableInRDFGraph(tx,tableEntry->getTableID())) {
if (catalog.tableInRDFGraph(tx, tableEntry->getTableID())) {
continue;
}
ExportedTableData tableData;
Expand Down
1 change: 1 addition & 0 deletions src/planner/operator/logical_operator.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "planner/operator/logical_operator.h"

#include "common/exception/runtime.h"

using namespace kuzu::common;
Expand Down
2 changes: 1 addition & 1 deletion src/processor/operator/simple/export_db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ std::string getCopyCypher(Catalog* catalog, Transaction* tx, ReaderConfig* bound
stringstream ss;
for (auto& nodeTableEntry : catalog->getNodeTableEntries(tx)) {
if (catalog->tableInRDFGraph(tx, nodeTableEntry->getTableID())) {
continue ;
continue;
}
auto tableName = nodeTableEntry->getName();
if (containOnlySerialProperty(nodeTableEntry)) {
Expand Down

0 comments on commit 83d819d

Please sign in to comment.