mirror of
https://github.com/apache/superset.git
synced 2026-06-09 09:39:25 +00:00
feat(core): add support for case insensitive LIKE operator (#1129)
This commit is contained in:
committed by
Yongjie Zhao
parent
32ebeff93b
commit
a6cfaffa35
@@ -2,7 +2,7 @@
|
||||
const UNARY_OPERATORS = ['IS NOT NULL', 'IS NULL'] as const;
|
||||
|
||||
/** List of operators that require another operand that is a single value */
|
||||
const BINARY_OPERATORS = ['==', '!=', '>', '<', '>=', '<=', 'LIKE', 'REGEX'] as const;
|
||||
const BINARY_OPERATORS = ['==', '!=', '>', '<', '>=', '<=', 'ILIKE', 'LIKE', 'REGEX'] as const;
|
||||
|
||||
/** List of operators that require another operand that is a set */
|
||||
const SET_OPERATORS = ['IN', 'NOT IN'] as const;
|
||||
|
||||
Reference in New Issue
Block a user