Skip to content
Snippets Groups Projects
Commit 35f3f207 authored by Simon Belak's avatar Simon Belak
Browse files

Add druid tests [ci druid]

parent 05a90931
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,19 @@
(expect-with-driver :druid
[[0.951]]
(druid-query-returning-rows
{:aggregation [[:share [:< $venue_price 4]]]}))
{:aggregation [[:share [:< $venue_price 4]]]}))
;; count-where
(expect-with-driver :druid
[[17.0]]
(druid-query-returning-rows
{:aggregation [[:count-where [:< $venue_price 4]]]}))
;; sum-where
(expect-with-driver :druid
[[179.0]]
(druid-query-returning-rows
{:aggregation [[:sum-where $venue_price [:< $venue_price 4]]]}))
;; post-aggregation math w/ 2 args: count + sum
(expect-with-driver :druid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment