mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: IS NULL filter operator for numeric columns (#13496)
This commit is contained in:
6
tests/fixtures/query_context.py
vendored
6
tests/fixtures/query_context.py
vendored
@@ -38,7 +38,11 @@ query_birth_names = {
|
||||
"time_range": "100 years ago : now",
|
||||
"timeseries_limit": 0,
|
||||
"timeseries_limit_metric": None,
|
||||
"filters": [{"col": "gender", "op": "==", "val": "boy"}],
|
||||
"filters": [
|
||||
{"col": "gender", "op": "==", "val": "boy"},
|
||||
{"col": "num", "op": "IS NOT NULL"},
|
||||
{"col": "name", "op": "NOT IN", "val": ["<NULL>", '"abc"']},
|
||||
],
|
||||
"having": "",
|
||||
"having_filters": [],
|
||||
"where": "",
|
||||
|
||||
Reference in New Issue
Block a user