From caf5bd9664df2104434949c6bba03e0131d1106a Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Fri, 17 Jul 2026 10:10:37 -0400 Subject: [PATCH] - Fixed some missing operators in Having query --- src/Query/Having.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Query/Having.php b/src/Query/Having.php index 71f6144..91774a0 100644 --- a/src/Query/Having.php +++ b/src/Query/Having.php @@ -106,7 +106,7 @@ class Having extends Fragment { } # whitelisting operators - return in_array(strtoupper($this->operator), [ '=', '!=', '<>', 'LIKE' ]) ? $this->operator : "="; + return in_array(strtoupper($this->operator), [ '=', '!=', '>', '>=', '<', '<=', '<>', 'LIKE', 'IS', 'IS NOT', 'REGEXP', 'IN' ]) ? $this->operator : "="; } protected function value()