Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[opt](iceberg) opt the error msg when create db which already exists (a…
…pache#46334) ### What problem does this PR solve? before: ``` mysql> create database cmytest; ERROR 1105 (HY000): errCode = 2, detailMessage = Failed to create database: cmytest, error message is:null ``` after: ``` mysql> create database cmytest; ERROR 1105 (HY000): errCode = 2, detailMessage = Failed to create database: cmytest: org.apache.doris.common.DdlException: errCode = 2, detailMessage = Can't create database 'cmytest'; database exists ```
- Loading branch information