olivrlee commented on code in PR #3168:
URL: https://github.com/apache/calcite/pull/3168#discussion_r1194445781


##########
core/src/test/java/org/apache/calcite/test/SqlValidatorTest.java:
##########
@@ -10501,7 +10508,8 @@ private void checkCustomColumnResolving(String table) {
     final String sql4 = "insert into EMP_MODIFIABLEVIEW2(\"extra\" INTEGER)"
         + " (empno, ename, job, \"extra\")\n"
         + "values (1, 'Arthur', 'clown', true)";
-    s.withSql(sql4).ok();
+    
s.withConformance(SqlConformanceEnum.BIG_QUERY).withTypeCoercion(true).withSql(sql4).ok();

Review Comment:
   I've verified for that for other conformance enums these should also be 
included:
   - MySql 5
   
   It should not be included for :
   - Oracle 10 
   - Oracle 12
   - Strict 2003
   
   I wasn't able to determine it for Presto 



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