zstan commented on code in PR #6274:
URL: https://github.com/apache/ignite-3/pull/6274#discussion_r2223034471


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/util/TypeUtils.java:
##########
@@ -598,6 +598,12 @@ public static boolean 
needCastInSearchBounds(IgniteTypeFactory typeFactory, RelD
             return false;
         }
 
+        // TIME, TIMESTAMP and TIMESTAMP_LTZ can use index, ignoring precision.
+        if (fromType.getSqlTypeName() == toType.getSqlTypeName()

Review Comment:
   next cases are unclear for now : create table ... col TIME(3) and further 
query : select from .. where col = TIME '12:12:12.1234' is it need to be 
implicitly casted ? And on the contrary: create table ... col TIME(3) and 
further : select from .. where col = TIME '12:12:12.12'. Other words - temporal 
predicate with great or less precision than column is.



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to