julianhyde commented on code in PR #4405:
URL: https://github.com/apache/calcite/pull/4405#discussion_r2146239154
##########
core/src/test/java/org/apache/calcite/rel/rel2sql/RelToSqlConverterTest.java:
##########
@@ -4531,8 +4575,8 @@ private SqlDialect nonOrdinalDialect() {
@Test void testDb2DialectCast() {
String query = "select \"hire_date\", cast(\"hire_date\" as varchar(10)) "
+ "from \"foodmart\".\"reserve_employee\"";
- final String expected = "SELECT reserve_employee.hire_date, "
- + "CAST(reserve_employee.hire_date AS VARCHAR(10))\n"
+ final String expected = "SELECT reserve_employee.hire_date,"
+ + " CAST(reserve_employee.hire_date AS VARCHAR(10))\n"
Review Comment:
cosmetic change. you should revert
--
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]