From d8d0511fc138993cdec9fa393bf2d667381c014e Mon Sep 17 00:00:00 2001 From: ribeaudc <ribeaudc> Date: Tue, 19 Jun 2007 09:27:16 +0000 Subject: [PATCH] change: - if value is null, no further check needed after call to 'checkNotNullConstraint'. SVN: 580 --- .../java/ch/systemsx/cisd/common/db/DBRestrictions.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/source/java/ch/systemsx/cisd/common/db/DBRestrictions.java b/common/source/java/ch/systemsx/cisd/common/db/DBRestrictions.java index 5d88f0d7f55..03851fe56e2 100644 --- a/common/source/java/ch/systemsx/cisd/common/db/DBRestrictions.java +++ b/common/source/java/ch/systemsx/cisd/common/db/DBRestrictions.java @@ -244,6 +244,11 @@ public class DBRestrictions assert restrictions != null : "Illegal table " + tableName; final int maxLength = restrictions.getLength(columnName); checkNotNullConstraint(tableName, columnName, value, restrictions); + if (value == null) + { + // No further check needed here. + return; + } final Set<String> checkedConstraint = restrictions.getCheckedConstaint(columnName); if (checkedConstraint != null && checkedConstraint.contains(value) == false) { -- GitLab