Merge branch 'master' into v2.0.0

This commit is contained in:
Dave M. 2026-07-17 10:11:48 -04:00
commit 75f4b1d5f8

View File

@ -106,7 +106,7 @@ class Having extends Fragment {
} }
# whitelisting operators # 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() protected function value()