We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
case Types.JAVA_OBJECT: Object object = rs.getObject(column.getPosition()); if (rs.wasNull()) { object = null; } dyn.put(object, object.getClass(), column); break;
if rs.wasNull returns true then object is set to null. null.getClass will thrown a NPE.
The text was updated successfully, but these errors were encountered:
Should it return a NullType.class in that case? That is the same value Types.NULL would return.
Sorry, something went wrong.
For the time being, I commented out the JAVA_OBJECT data value in VariableUpdateRowMapperTest.EasyValueChecker.
This should be uncommented when this issue is resolved.
No branches or pull requests
if rs.wasNull returns true then object is set to null. null.getClass will thrown a NPE.
The text was updated successfully, but these errors were encountered: