davidradl commented on code in PR #25834:
URL: https://github.com/apache/flink/pull/25834#discussion_r1908900334
##########
flink-table/flink-sql-parser/src/main/codegen/includes/parserImpls.ftl:
##########
@@ -3333,21 +3335,31 @@ SqlAlterModel SqlAlterModel() :
<RENAME> <TO>
newModelIdentifier = CompoundIdentifier()
{
- return new SqlAlterModel(
+ return new SqlAlterModelRename(
startPos.plus(getPos()),
modelIdentifier,
- newModelIdentifier,
- ifExists);
+ ifExists,
Review Comment:
I am curious why you have reversed the order of these parameters?
--
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]