mihaibudiu commented on code in PR #4200:
URL: https://github.com/apache/calcite/pull/4200#discussion_r1962324813
##########
core/src/test/java/org/apache/calcite/rel/rel2sql/RelToSqlConverterTest.java:
##########
@@ -1781,15 +1781,14 @@ private static String toSql(RelNode root, SqlDialect
dialect,
.project(builder.field("DEPTNO"))
.build();
final String expectedSql = "SELECT \"DEPTNO\"\n"
- + "FROM (SELECT *\n"
+ "FROM (SELECT *\n"
+ "FROM \"scott\".\"EMP\"\n"
+ "UNION ALL\n"
+ "SELECT *\n"
- + "FROM \"scott\".\"EMP\")\n"
+ + "FROM \"scott\".\"EMP\") AS \"t\"\n"
Review Comment:
do you want to modify the JavaDoc to add the new JIRA issue as well?
--
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]