Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxiaojian committed Feb 18, 2024
1 parent 6f5ca76 commit 1d79f34
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ protected void createDatabaseImpl(String name, Map<String, String> properties) {

@Override
protected void dropDatabaseImpl(String name) {
// delete table
// Delete table from paimon_tables
execute(connections, JdbcUtils.DELETE_TABLES_SQL, catalogName, name);
// delete properties
// Delete properties from paimon_database_properties
execute(connections, JdbcUtils.DELETE_ALL_DATABASE_PROPERTIES_SQL, catalogName, name);
}

Expand Down

0 comments on commit 1d79f34

Please sign in to comment.