Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.25.0
Description
SqlOperatorTest contains the following disabled test:
f.checkScalar("cast(TIME '12:42:25.34' as TIME(2))", "12:42:25.34", "TIME(2) NOT NULL");
This test is disabled based on the following condition;
/** * Whether <a href="http://issues.eigenbase.org/browse/FRG-282">issue * FRG-282: Support precision in TIME and TIMESTAMP data types</a> is fixed. */ public static final boolean FRG282_FIXED = true;
However, the result is computed correctly. The precision is lost in the JDBC layer, which creates a TimeFromNumberAccessor which does not depend on the precision of the target type: it always returns the time with a precision of 0.