juntaozhang commented on PR #4318:
URL: https://github.com/apache/calcite/pull/4318#issuecomment-2816285215
> In other words, did you solve the problem which motivated this PR?
Just as the failed cases described in JIRA, these two cases of after PR can
pass.
```
String sqlExpected = "f(a => TABLE t PARTITION BY f1 ORDER BY f2, b =>
1)";
String sqlActual = parseExpression(sqlExpected)
.toSqlString(new AnsiSqlDialect(SqlDialect.EMPTY_CONTEXT)).getSql();
parseExpression(sqlActual);
```
```
String sqlExpected = "f(TABLE t PARTITION BY f1 ORDER BY f2,1)";
String sqlActual = parseExpression(sqlExpected)
.toSqlString(new AnsiSqlDialect(SqlDialect.EMPTY_CONTEXT)).getSql();
parseExpression(sqlActual);
```
--
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]