ActiveData icon indicating copy to clipboard operation
ActiveData copied to clipboard

deep query does not filter properly

Open klahnakoski opened this issue 5 years ago • 1 comments

the nested filter is not inserted into the ES query:

{
	"from":"treeherder.job_log.failure_line",
	"select":["expected","status","test"],
	"where":[
		{"eq":{"failure.classification":"intermittent"}},
		{"gte":{"action.start_time":{"date":"today-2week"}}},
		{"ne":{"run.result":"success"}},
		{"eq":{"action":"test_result"}},
		{"exists":"test"}
	],
	"limit":10
}

klahnakoski avatar Jul 05 '19 16:07 klahnakoski

...specifically, the ES query is not filtering out missing test

klahnakoski avatar Aug 07 '19 19:08 klahnakoski