Skip to content
Snippets Groups Projects
Commit 750074c4 authored by Ryan Senior's avatar Ryan Senior
Browse files

Date dimension options should apply to unix timestamps

They have a base_type of numeric but a special type of DateTime. This
adds the check for special type when associating dimension options to
a field.

Fixes #5876
parent 886f4641
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,8 @@
(let [{min_value :min, max_value :max} (get-in fingerprint [:type :type/Number])
[default-option all-options] (cond
(isa? base_type :type/DateTime)
(or (isa? base_type :type/DateTime)
(isa? special_type :type/DateTime))
[date-default-index datetime-dimension-indexes]
(and min_value max_value
......
......@@ -558,15 +558,18 @@
(finally
(db/update! Field lat-field-id :fingerprint fingerprint)))))
(defn- dimension-options-for-field [response field-name]
(->> response
:fields
(m/find-first #(= field-name (:name %)))
:dimension_options))
(defn- extract-dimension-options
"For the given `FIELD-NAME` find it's dimension_options following
the indexes given in the field"
[response field-name]
(set
(for [dim-index (->> response
:fields
(m/find-first #(= field-name (:name %)))
:dimension_options)
(for [dim-index (dimension-options-for-field response field-name)
:let [{[_ _ strategy _] :mbql} (get-in response [:dimension_options (keyword dim-index)])]]
strategy)))
......@@ -592,3 +595,10 @@
(finally
(db/update! Field (data/id :venues :price) :special_type special_type)))))
;; Ensure unix timestamps show date binning options, not numeric binning options
(expect
(var-get #'table-api/datetime-dimension-indexes)
(data/dataset sad-toucan-incidents
(let [response ((user->client :rasta) :get 200 (format "table/%d/query_metadata" (data/id :incidents)))]
(dimension-options-for-field response "TIMESTAMP"))))
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