diff --git a/framework/db/QueryTrait.php b/framework/db/QueryTrait.php index 541c4fa..7b401bb 100644 --- a/framework/db/QueryTrait.php +++ b/framework/db/QueryTrait.php @@ -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 []; }