From 83d819d9417726335e9153e7b636d1351173719a Mon Sep 17 00:00:00 2001 From: xiyang Date: Tue, 30 Apr 2024 17:53:03 -0400 Subject: [PATCH] clean --- src/binder/bind/bind_export_database.cpp | 2 +- src/planner/operator/logical_operator.cpp | 1 + src/processor/operator/simple/export_db.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/binder/bind/bind_export_database.cpp b/src/binder/bind/bind_export_database.cpp index 9af05e6ed93..f5eb6b0e8b0 100644 --- a/src/binder/bind/bind_export_database.cpp +++ b/src/binder/bind/bind_export_database.cpp @@ -30,7 +30,7 @@ static std::vector getExportInfo(const Catalog& catalog, Tran Binder* binder) { std::vector exportData; for (auto tableEntry : catalog.getTableEntries(tx)) { - if (catalog.tableInRDFGraph(tx,tableEntry->getTableID())) { + if (catalog.tableInRDFGraph(tx, tableEntry->getTableID())) { continue; } ExportedTableData tableData; diff --git a/src/planner/operator/logical_operator.cpp b/src/planner/operator/logical_operator.cpp index 708bc61c17b..d9335aaf279 100644 --- a/src/planner/operator/logical_operator.cpp +++ b/src/planner/operator/logical_operator.cpp @@ -1,4 +1,5 @@ #include "planner/operator/logical_operator.h" + #include "common/exception/runtime.h" using namespace kuzu::common; diff --git a/src/processor/operator/simple/export_db.cpp b/src/processor/operator/simple/export_db.cpp index f00013206d1..76abab20aa4 100644 --- a/src/processor/operator/simple/export_db.cpp +++ b/src/processor/operator/simple/export_db.cpp @@ -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)) {