xuzifu666 commented on code in PR #4719:
URL: https://github.com/apache/calcite/pull/4719#discussion_r2658840486


##########
core/src/test/java/org/apache/calcite/rel/rel2sql/RelToSqlConverterTest.java:
##########
@@ -11098,6 +11098,19 @@ private void checkLiteral2(String expression, String 
expected) {
         .ok(expected);
   }
 
+  /** Test case of
+   * <a 
href="https://issues.apache.org/jira/browse/CALCITE-6829";>[CALCITE-6829]
+   * MSSQL dialect incorrectly translates of SELECT TRUE</a>. */
+  @Test void testMysqlSelectTrue() {
+    final String query = "SELECT TRUE";
+    final String expected = "SELECT TRUE";
+    sql(query).withMysql().ok(expected);

Review Comment:
   This should be testing the Mssql dialect, not the MySQL dialect.



-- 
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]

Reply via email to