Xuxiaotuan opened a new issue, #32425: URL: https://github.com/apache/doris/issues/32425
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Description Our company now has a previous business that needs to be migrated to doris. There are about tens of thousands of tables. However, in the previous business, the table names were md5, so that we can get a collection with only numbers and characters. It is inevitable that there will be numbers. Begins with the form. But I found that FE in doris is only allowed to start with a letter [private static final String TABLE_NAME_REGEX = "^[a-zA-Z][a-zA-Z0-9-_]*$";](https://github.com/apache/doris/blob/2d1865656793a7c9b01fd6da8ee03a8b7b247133/fe/fe-core/src/main/java/org/apache/doris/common/FeNameFormat.java#L35) I browsed related isuse such as #3415 , #21057 and no mention of numbers I referred to open source projects of the same type and asked whether table names starting with numbers should be supported. [public static final String TABLE_NAME_REGEX = "^[^\0]{1,1024}$";]( https://github.com/StarRocks/starrocks/blob/2236631e8b74380c1a255285b360eadbd79acaf6/fe/fe-core/src/main/java/com/starrocks/sql/analyzer/FeNameFormat.java#L37) If the number is called the table name prefix, it will have an overall impact. I hope you can tell me. Thank you very much. ### Solution Supports table names prefixed with numbers and characters. At present, I have compiled and run it with the master branch, and it is working normally. I hope to get answers, and I am also willing to submit PR.  ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
