This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from 532a8391283 [Chore](fuzzy) do not use pr id to decide wheather enable some fuzzy (#46895) add ac9599d633d [feat](nereids) support drop database in nereids (#42935) No new revisions were added by this update. Summary of changes: .../antlr4/org/apache/doris/nereids/DorisParser.g4 | 66 ++++++++-------- .../main/java/org/apache/doris/catalog/Env.java | 10 ++- .../org/apache/doris/datasource/CatalogIf.java | 2 + .../apache/doris/datasource/ExternalCatalog.java | 7 +- .../apache/doris/datasource/InternalCatalog.java | 37 ++++----- .../doris/datasource/hive/HiveMetadataOps.java | 8 +- .../datasource/iceberg/IcebergMetadataOps.java | 14 ++-- .../datasource/operations/ExternalMetadataOps.java | 9 +++ .../doris/nereids/parser/LogicalPlanBuilder.java | 12 +++ .../apache/doris/nereids/trees/plans/PlanType.java | 1 + .../trees/plans/commands/DropDatabaseCommand.java | 89 ++++++++++++++++++++++ .../plans/commands/info/DropDatabaseInfo.java | 61 +++++++++++++++ .../trees/plans/visitor/CommandVisitor.java | 5 ++ .../suites/ddl_p0/test_drop_force.groovy | 7 ++ .../hive/ddl/test_hive_ddl.groovy | 2 +- 15 files changed, 268 insertions(+), 62 deletions(-) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/DropDatabaseCommand.java create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/DropDatabaseInfo.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org