Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeriann committed Jul 10, 2024
1 parent f96ed97 commit 858a37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/statement_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ unique_ptr<DeleteStatement> StatementGenerator::GenerateDelete() {
auto &entry_ref = Choose(generator_context->tables_and_views);
auto &entry = entry_ref.get();
if (entry.type == CatalogType::TABLE_ENTRY) {
auto result = make_uniq<BaseTableRef>();
auto result = make_uniq<BaseTableRef>();
result->table_name = entry.name;
delete_statement->table = std::move(result);
} else {
delete_statement->table = GenerateTableRef();
delete_statement->table = GenerateTableRef();
}
} else {
delete_statement->table = GenerateTableRef();
Expand Down

0 comments on commit 858a37e

Please sign in to comment.