julianhyde commented on code in PR #3337:
URL: https://github.com/apache/calcite/pull/3337#discussion_r1275316217


##########
testkit/src/main/java/org/apache/calcite/sql/parser/SqlParserTest.java:
##########
@@ -906,6 +906,29 @@ protected static SortedSet<String> keywords(@Nullable 
String dialect) {
         .ok(expectedBigQuery);
   }
 
+  @Test void testDecimalLiteral() {

Review Comment:
   Oops, I meant dialect, not conformance. A couple of lines like this:
   ```
       final SqlParserFixture f = fixture().withDialect(BIG_QUERY);
       f.sql("select date '2020-10-10'")
           .ok("SELECT DATE '2020-10-10'");
   ```



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