|
8 | 8 | [metabase.config :as config]
|
9 | 9 | [metabase.driver :as driver]
|
10 | 10 | [metabase.util :as u]
|
11 |
| - [metabase.query-processor-test.alternative-date-test :as alternative-date-test] |
12 |
| - [metabase.query-processor-test.date-bucketing-test :as date-bucketing-test] |
13 | 11 | [metabase.driver.sql-jdbc.execute :as sql-jdbc.execute]
|
14 | 12 | [metabase.driver.sql.query-processor :as sql.qp]
|
15 | 13 | [metabase.util.honey-sql-2 :as h2x]
|
|
205 | 203 | [:cast [:substring expr (int 9) (int 2)] :integer]
|
206 | 204 | [:cast [:substring expr (int 11) (int 2)] :integer]
|
207 | 205 | [:cast [:substring expr (int 13) (int 2)] :integer]])
|
208 |
| - |
209 |
| -(defmethod alternative-date-test/yyyymmddhhmmss-binary-dates-expected-rows :materialize |
210 |
| - [_driver] |
211 |
| - [[1 "foo" #t "2019-04-21T16:43"] |
212 |
| - [2 "bar" #t "2020-04-21T16:43"] |
213 |
| - [3 "baz" #t "2021-04-21T16:43"]]) |
214 |
| - |
215 |
| -(defmethod alternative-date-test/yyyymmddhhmmss-dates-expected-rows :materialize |
216 |
| - [_driver] |
217 |
| - [[1 "foo" #t "2019-04-21T16:43"] |
218 |
| - [2 "bar" #t "2020-04-21T16:43"] |
219 |
| - [3 "baz" #t "2021-04-21T16:43"]]) |
220 |
| - |
221 |
| -(defmethod date-bucketing-test/group-by-default-test-expected-rows :materialize |
222 |
| - [_driver] |
223 |
| - [["2015-06-01T10:31:00Z" 1] |
224 |
| - ["2015-06-01T16:06:00Z" 1] |
225 |
| - ["2015-06-01T17:23:00Z" 1] |
226 |
| - ["2015-06-01T18:55:00Z" 1] |
227 |
| - ["2015-06-01T21:04:00Z" 1] |
228 |
| - ["2015-06-01T21:19:00Z" 1] |
229 |
| - ["2015-06-02T02:13:00Z" 1] |
230 |
| - ["2015-06-02T05:37:00Z" 1] |
231 |
| - ["2015-06-02T08:20:00Z" 1] |
232 |
| - ["2015-06-02T11:11:00Z" 1]]) |
233 |
| - |
234 |
| -(defmethod date-bucketing-test/group-by-default-test-2-expected-rows :materialize |
235 |
| - [_driver] |
236 |
| - [["2015-06-01T10:31:00Z" 1] |
237 |
| - ["2015-06-01T16:06:00Z" 1] |
238 |
| - ["2015-06-01T17:23:00Z" 1] |
239 |
| - ["2015-06-01T18:55:00Z" 1] |
240 |
| - ["2015-06-01T21:04:00Z" 1] |
241 |
| - ["2015-06-01T21:19:00Z" 1] |
242 |
| - ["2015-06-02T02:13:00Z" 1] |
243 |
| - ["2015-06-02T05:37:00Z" 1] |
244 |
| - ["2015-06-02T08:20:00Z" 1] |
245 |
| - ["2015-06-02T11:11:00Z" 1]]) |
0 commit comments