Skip to content
Snippets Groups Projects
Commit 268b0792 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: Fixed a NullPointerException

parent 5c38b39e
No related branches found
No related tags found
2 merge requests!66REL: prepare release 0.8.0,!62Fix large integer queries
Pipeline #24673 failed
......@@ -278,7 +278,11 @@ public class POV implements EntityFilterInterface {
callPOV.setInt(7, this.vInt);
callPOV.setDouble(8, vDoubleSubst);
} else {
callPOV.setInt(7, vIntSubst);
if (vIntSubst == null) {
callPOV.setNull(7, INTEGER);
} else {
callPOV.setInt(7, vIntSubst);
}
callPOV.setDouble(8, this.vDouble);
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment