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
{{ message }}
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.
I am using your JDBC wrapper for Cassandra JDBC data Operator and I receive following NPE while trying to get ResultSet from a table where contain a TimeStamp column.
Seems you do not handle the null value exception if the type is Timestamp:
else if (typeName.equals("timestamp")){
return (Object) new Timestamp((currentRow.getTimestamp(index-1)).getTime());
Thanks in advance for your answer.
Michael
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi Alexander,
I am using your JDBC wrapper for Cassandra JDBC data Operator and I receive following NPE while trying to get ResultSet from a table where contain a TimeStamp column.
Seems you do not handle the null value exception if the type is Timestamp:
else if (typeName.equals("timestamp")){
return (Object) new Timestamp((currentRow.getTimestamp(index-1)).getTime());
Thanks in advance for your answer.
Michael
The text was updated successfully, but these errors were encountered: