even lower consistency

This commit is contained in:
Karl Mortensen 2015-05-12 11:43:17 -04:00
parent fd532e68b8
commit 8bd43eadc7

View File

@ -204,7 +204,7 @@ public class EventDB {
String strip = StringUtils.strip(filter.getText());
return "((LOWER(" + MED_DESCRIPTION_COLUMN + ") LIKE LOWER('%" + strip + "%')) OR (LOWER(" // NON-NLS
+ FULL_DESCRIPTION_COLUMN + ") LIKE LOWER('%" + strip + "%')) OR (LOWER(" // NON-NLS
+ SHORT_DESCRIPTION_COLUMN + ") LIKE LOWER('%" + strip + "%'))"; // NON-NLS
+ SHORT_DESCRIPTION_COLUMN + ") LIKE LOWER('%" + strip + "%')))"; // NON-NLS
} else {
return "1";
}