mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
orm: all/any operators
This commit is contained in:
@@ -55,6 +55,18 @@ class PostgresqlQueryComposer extends BaseQueryComposer
|
||||
'!=' => '<>',
|
||||
'!*' => 'NOT ILIKE',
|
||||
'*' => 'ILIKE',
|
||||
'>=any' => '>= ANY',
|
||||
'<=any' => '<= ANY',
|
||||
'>any' => '> ANY',
|
||||
'<any' => '< ANY',
|
||||
'!=any' => '<> ANY',
|
||||
'=any' => '= ANY',
|
||||
'>=all' => '>= ALL',
|
||||
'<=all' => '<= ALL',
|
||||
'>all' => '> ALL',
|
||||
'<all' => '< ALL',
|
||||
'!=all' => '<> ALL',
|
||||
'=all' => '= ALL',
|
||||
];
|
||||
|
||||
/** @var array<string, string> */
|
||||
|
||||
Reference in New Issue
Block a user