v.23.10Improvement
Support renaming tables without the TABLE keyword
Support rename table without keywordTABLElikeRENAME db.t1 to db.t2. #55373 (凌涛).
Why it matters
This feature simplifies the syntax for renaming tables by removing the mandatoryTABLE keyword in the RENAME statement. It improves usability and makes the rename command more concise and easier to write.How to use it
Users can rename tables by executing SQL commands in the following format:RENAME db.t1 TO db.t2This new syntax does not require the
TABLE keyword previously needed, streamlining table renaming operations.