You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the time is longer than 3 digits, an error will occur at other timings such as parsing when trying to convert to Duration.
com.mysql.jdbc.ResultSetRow.getTimestampFast
This is because there is no simple description of the processing in which the character string has 9 digits.It is necessary to change the process to get the value as a character string with getString, split the character string with a colon and convert it to Duration.
java.sql.SQLException: Bad format for Timestamp '100:00:00' in column 8. at com.mysql.jdbc.ResultSetRow.getTimestampFast(ResultSetRow.java:1157) at com.mysql.jdbc.ByteArrayRow.getTimestampFast(ByteArrayRow.java:130) at com.mysql.jdbc.ResultSetImpl.getTimestampInternal(ResultSetImpl.java:5946) at com.mysql.jdbc.ResultSetImpl.getTimestamp(ResultSetImpl.java:5616) at com.zaxxer.hikari.pool.HikariProxyResultSet.getTimestamp(HikariProxyResultSet.java) at ixias.persistence.lifted.SlickColumnTypeOps$$anon$1.getValue(SlickColumnTypeOps.scala:105) at ixias.persistence.lifted.SlickColumnTypeOps$$anon$1.getValue(SlickColumnTypeOps.scala:99) ...omitted
The text was updated successfully, but these errors were encountered:
If the time is longer than 3 digits, an error will occur at other timings such as parsing when trying to convert to Duration.
com.mysql.jdbc.ResultSetRow.getTimestampFast
This is because there is no simple description of the processing in which the character string has 9 digits.It is necessary to change the process to get the value as a character string with getString, split the character string with a colon and convert it to Duration.
java.sql.SQLException: Bad format for Timestamp '100:00:00' in column 8. at com.mysql.jdbc.ResultSetRow.getTimestampFast(ResultSetRow.java:1157) at com.mysql.jdbc.ByteArrayRow.getTimestampFast(ByteArrayRow.java:130) at com.mysql.jdbc.ResultSetImpl.getTimestampInternal(ResultSetImpl.java:5946) at com.mysql.jdbc.ResultSetImpl.getTimestamp(ResultSetImpl.java:5616) at com.zaxxer.hikari.pool.HikariProxyResultSet.getTimestamp(HikariProxyResultSet.java) at ixias.persistence.lifted.SlickColumnTypeOps$$anon$1.getValue(SlickColumnTypeOps.scala:105) at ixias.persistence.lifted.SlickColumnTypeOps$$anon$1.getValue(SlickColumnTypeOps.scala:99) ...omitted
The text was updated successfully, but these errors were encountered: