Skip to content

Commit

Permalink
Fix getOutputMsg in db extensions (#3357)
Browse files Browse the repository at this point in the history
  • Loading branch information
prrao87 committed Apr 23, 2024
1 parent eace8cb commit 81b47c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/processor/operator/simple/attach_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void AttachDatabase::executeInternal(ExecutionContext* context) {
}

std::string AttachDatabase::getOutputMsg() {
return "Attach database successfully.";
return "Attached database successfully.";
}

} // namespace processor
Expand Down
2 changes: 1 addition & 1 deletion src/processor/operator/simple/detach_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void DetachDatabase::executeInternal(kuzu::processor::ExecutionContext* context)
}

std::string DetachDatabase::getOutputMsg() {
return "Detach database successfully.";
return "Detached database successfully.";
}

} // namespace processor
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 @@ -99,7 +99,7 @@ void ExportDB::executeInternal(ExecutionContext* context) {
}

std::string ExportDB::getOutputMsg() {
return "Export database successfully." + extraMsg;
return "Exported database successfully." + extraMsg;
}

} // namespace processor
Expand Down
2 changes: 1 addition & 1 deletion src/processor/operator/simple/import_db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void ImportDB::executeInternal(ExecutionContext* context) {
}

std::string ImportDB::getOutputMsg() {
return "Import database successfully.";
return "Imported database successfully.";
}

} // namespace processor
Expand Down
2 changes: 1 addition & 1 deletion src/processor/operator/simple/use_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void UseDatabase::executeInternal(kuzu::processor::ExecutionContext* context) {
}

std::string UseDatabase::getOutputMsg() {
return "Use database successfully.";
return "Used database successfully.";
}

} // namespace processor
Expand Down

0 comments on commit 81b47c3

Please sign in to comment.