fix: IS NULL filter operator for numeric columns (#13496)

This commit is contained in:
Jesse Yang
2021-03-10 10:15:25 -08:00
committed by GitHub
parent 70ccc26421
commit b9884fb55b
6 changed files with 51 additions and 39 deletions

View File

@@ -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": "",