|
thanks for reporting @Yekaterina !
Issue confirmed.
I must check further, but according to javadoc "https://docs.oracle.com/javase/8/docs/api/java/sql/Timestamp.html"
The precision of a Timestamp object is calculated to be either: 19 , which is the number of characters in yyyy-mm-dd hh:mm:ss, 20 + s , which is the number of characters in the yyyy-mm-dd hh:mm:ss.[fff...] and s represents the scale of the given Timestamp, its fractional seconds precision.
so for example precision for timestamp(0) must be 19, timestamp(6) must be 26.
|