Skip to content
Snippets Groups Projects
Commit f3a737dd authored by Cam Saül's avatar Cam Saül
Browse files

Add tests for Druid min / max aggregations using metrics :lightning:

parent f998f693
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
[]
(doseq [engine event-based-dbs]
(datasets/with-engine-when-testing engine
(data/do-with-temp-db (flattened-db-def) (fn [& _])))))
(data/do-with-temp-db (flattened-db-def) (constantly nil)))))
(defmacro ^:private with-flattened-dbdef [& body]
`(data/with-temp-db [~'_ (flattened-db-def)]
......@@ -679,11 +679,19 @@
;;; MIN & MAX
;; tests for dimension columns
(expect-with-timeseries-dbs [4.0] (first-row (data/run-query checkins
(ql/aggregation (ql/max $venue_price)))))
(expect-with-timeseries-dbs [1.0] (first-row (data/run-query checkins
(ql/aggregation (ql/min $venue_price)))))
(ql/aggregation (ql/min $venue_price)))))
(expect-with-timeseries-dbs [4.0] (first-row (data/run-query checkins
(ql/aggregation (ql/max $venue_price)))))
;; tests for metric columns
(expect-with-timeseries-dbs [1.0] (first-row (data/run-query checkins
(ql/aggregation (ql/max $count)))))
(expect-with-timeseries-dbs [1.0] (first-row (data/run-query checkins
(ql/aggregation (ql/min $count)))))
(expect-with-timeseries-dbs
[["1" 34.0071] ["2" 33.7701] ["3" 10.0646] ["4" 33.983]] ; some sort of weird quirk w/ druid where all columns in breakout get converted to strings
......
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