mirror of
https://github.com/apache/superset.git
synced 2026-04-20 16:44:46 +00:00
feat(native-filters): add search all filter options (#14710)
* feat(native-filters): add search all filter options * add tests * fix default value * implement ILIKE operator * rebump packages * fix test * address comments * fix state changes coming from application * fix debouncer
This commit is contained in:
@@ -206,6 +206,7 @@ class FilterOperator(str, Enum):
|
||||
GREATER_THAN_OR_EQUALS = ">="
|
||||
LESS_THAN_OR_EQUALS = "<="
|
||||
LIKE = "LIKE"
|
||||
ILIKE = "ILIKE"
|
||||
IS_NULL = "IS NULL"
|
||||
IS_NOT_NULL = "IS NOT NULL"
|
||||
IN = "IN" # pylint: disable=invalid-name
|
||||
|
||||
Reference in New Issue
Block a user