Skip to content

Commit

Permalink
Add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Sep 12, 2024
1 parent 8b3d63d commit 47d6983
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct CreatePropertyGraphInfo : public CreateInfo {
}
if (error_not_found) {
throw Exception(ExceptionType::INVALID,
"Exact table '" + table_name + "' found, but it is not a " +
"Exact label '" + table_name + "' found, but it is not a " +
(is_vertex_table ? "vertex" : "edge") + " table.");
}
return nullptr;
Expand All @@ -101,7 +101,7 @@ struct CreatePropertyGraphInfo : public CreateInfo {
continue;
}
if (pg_table->table_name == table_name) {
throw Exception(ExceptionType::INVALID, "Table " + table_name + " found in the property graph, but does not have the correct label. Did you mean the label '" + pg_table->main_label + "' instead?");
throw Exception(ExceptionType::INVALID, "Table '" + table_name + "' found in the property graph, but does not have the correct label. Did you mean the label '" + pg_table->main_label + "' instead?");
}

// Use int64_t for the distance calculations
Expand Down

0 comments on commit 47d6983

Please sign in to comment.