Merge pull request #1241 from karlmortensen/lower

even lower consistency
This commit is contained in:
Richard Cordovano 2015-05-12 12:21:20 -04:00
commit 148f42faa4

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";
}