Skip to content
Snippets Groups Projects
Unverified Commit bbe132a3 authored by Cam Saul's avatar Cam Saul Committed by GitHub
Browse files

MLv2: fix :relative-datetime schema (#29747) (#30019)

parent 6e9fa407
No related branches found
No related tags found
No related merge requests found
......@@ -127,9 +127,9 @@
[:= :current]
:int])
(mbql-clause/define-tuple-mbql-clause :relative-datetime :- :type/DateTime
#_n [:ref ::relative-datetime.amount]
#_unit [:ref ::temporal-bucketing/unit.date-time.interval])
(mbql-clause/define-catn-mbql-clause :relative-datetime :- :type/DateTime
[:n [:schema [:ref ::relative-datetime.amount]]]
[:unit [:? [:schema [:ref ::temporal-bucketing/unit.date-time.interval]]]])
(mbql-clause/define-tuple-mbql-clause :time :- :type/Time
#_:timestr [:schema [:ref ::expression/string]]
......
......@@ -55,3 +55,12 @@
{:lib/uuid "202ec127-f7b9-49ce-b785-cd7b96996660"}
[:field {:temporal-unit :default, :lib/uuid "cde9c9d4-c399-4808-8476-24b65842ba82"} 1]
:year-of-era]))))
(deftest ^:parallel relative-datetime-test
(are [clause] (not (mc/explain :mbql.clause/relative-datetime clause))
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} -1 :day]
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} -1 :minute]
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} 0 :day]
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} :current :day]
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} :current :minute]
[:relative-datetime {:lib/uuid "00000000-0000-0000-0000-000000000000"} :current]))
......@@ -35,10 +35,6 @@
[legacy-query]
(or
*skip-conversion-tests*
;; #29747: schema for `:relative-datetime` current without a unit is broken
(mbql.u/match-one legacy-query
[:relative-datetime :current]
"#29747")
;; #29898: `:joins` with `:fields` other than `:all` or `:none` are not normalized correctly.
(mbql.u/match-one legacy-query
{:joins joins}
......
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