Adds a Entry points:
Requirements:
Query transformation:
Question transformation:
| (ns metabase.lib.drill-thru.summarize-column-by-time (:require [medley.core :as m] [metabase.lib.aggregation :as lib.aggregation] [metabase.lib.breakout :as lib.breakout] [metabase.lib.drill-thru.common :as lib.drill-thru.common] [metabase.lib.ref :as lib.ref] [metabase.lib.schema :as lib.schema] [metabase.lib.schema.drill-thru :as lib.schema.drill-thru] [metabase.lib.schema.util :as lib.schema.util] [metabase.lib.temporal-bucket :as lib.temporal-bucket] [metabase.lib.types.isa :as lib.types.isa] [metabase.lib.underlying :as lib.underlying] [metabase.util.malli :as mu])) |
(mu/defn summarize-column-by-time-drill :- [:maybe ::lib.schema.drill-thru/drill-thru.summarize-column-by-time] "A breakout summarizing a column over time. Separate from single-value [[summarize-column-drill]] for sum, average, and distinct value count." [query :- ::lib.schema/query stage-number :- :int {:keys [column value]} :- ::lib.schema.drill-thru/context] (when (and (lib.drill-thru.common/mbql-stage? query stage-number) column (nil? value) (not (lib.types.isa/structured? column)) (lib.types.isa/summable? column) (not (lib.underlying/aggregation-sourced? query column))) ;; There must be a date dimension available. (let [stage-number (lib.underlying/top-level-stage-number query)] (when-let [breakout-column (m/find-first lib.types.isa/temporal? (lib.breakout/breakoutable-columns query stage-number))] (when-let [bucketing-unit (m/find-first :default (lib.temporal-bucket/available-temporal-buckets query stage-number breakout-column))] ;; only suggest this drill thru if the breakout it would apply does not already exist. (let [bucketed (lib.temporal-bucket/with-temporal-bucket breakout-column bucketing-unit)] (when (lib.schema.util/distinct-refs? (map lib.ref/ref (cons bucketed (lib.breakout/breakouts query stage-number)))) {:lib/type :metabase.lib.drill-thru/drill-thru :type :drill-thru/summarize-column-by-time :column column :breakout breakout-column :unit (lib.temporal-bucket/raw-temporal-bucket bucketing-unit)}))))))) | |
(defmethod lib.drill-thru.common/drill-thru-method :drill-thru/summarize-column-by-time [query _stage-number {:keys [breakout column unit] :as _drill-thru} & _] (let [bucketed (lib.temporal-bucket/with-temporal-bucket breakout unit) stage-number (lib.underlying/top-level-stage-number query)] (-> query (lib.aggregation/aggregate stage-number (lib.aggregation/sum column)) (lib.breakout/breakout stage-number bucketed)))) | |