filterWhere for postgres ILIKE

fixes #3252
This commit is contained in:
Carsten Brandt
2014-04-29 13:22:31 +02:00
parent 5c748ddb42
commit 6f7be5ee5c

View File

@ -259,6 +259,10 @@ trait QueryTrait
case 'OR LIKE':
case 'NOT LIKE':
case 'OR NOT LIKE':
case 'ILIKE': // PostgreSQL operator for case insensitive LIKE
case 'OR ILIKE':
case 'NOT ILIKE':
case 'OR NOT ILIKE':
if (array_key_exists(1, $condition) && $this->isEmpty($condition[1])) {
return [];
}