This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Oct 27, 2020
-
-
Cam Saul authored
-
- Oct 26, 2020
-
-
Cam Saul authored
* Specify location on getQueryResults calls (#13592) You must specify the location on any getQueryResults calls to BigQuery. It's supposed to be optional for anything but EU and US regions, but useast1 seems to require it. Fixes #13582 [ci bigquery] * v0.36.8.2 Co-authored-by:
Robert Roland <rob@metabase.com>
- Oct 23, 2020
-
-
Cam Saul authored
-
Nemanja Glumac authored
Repro for #13062: Multiple dashboard filter values not parsed on drill-through (numeric values) (#13580) * Add repro for #13062: Multiple dashboard filter values not parsed on drill-through Co-authored-by:
flamber <1447303+flamber@users.noreply.github.com>
-
Cam Saul authored
-
dpsutton authored
just bumping the driver gets us the GEOGRAPHY type in the snowflake types enum. We mark it automatically as `:type/*` but can do better marking as `:type/SerializedJSON`. Results look like (from metadata-queries/table-rows-sample) ```clojure [["1" true #t "2020-10-23T00:00" 1 "{\n \"coordinates\": [\n 0,\n 0\n ],\n \"type\": \"Point\"\n}"]] ``` and field information: ```clojure {:name "E", :id 1857, :special_type :type/Category, :database_type "GEOGRAPHY", :base_type :type/SerializedJSON} ``` ```sql create or replace table metabase_bug ( a string, b number, c boolean, d timestamp_ntz, e geography ); insert into metabase_bug values ('1', 1, true, current_date(), 'POINT(0 0)'); ```
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
Wait for initial query to be ready before paginating
-
Robert Roland authored
When pagination was added, we were requesting the first page before it was ready. This adds a job completion wait on the initial query before we start retrieving pages. Resolves #13582 [ci bigquery]
-
Paul Rosenzweig authored
-
- Oct 22, 2020
-
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
Merge release 0.36.8 into master 10/22/2020
-
Cam Saul authored
-
Cam Saul authored
Merge new release script and 0.36.7 tag back into release-0.36.x
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
-
Cam Saul authored
* with-log-level: allow passing logger to change level of * Clean up metabase.api.card-test * Sane version of with-model-cleanup macro * Test fixes
* Test fixes * Beautiful JUnit fix * Clean up metabase.api.alert-test * Don't delete Alert :card if not passed in by PUT /api/alert/:id endpoint * Cleanup metabase.api.dashboard-test * More test cleanup * Test fixes -
Cam Saul authored
-
Cam Saul authored
-
Nemanja Glumac authored
-
Simon Belak authored
* Unskip cypress * Make null behaviour correction work with `joined-field`s * Fix cypress test * Make linter happy * Cypress fix * Fix Cypress test - added regex pattern for weird singular/plural issue - added a different positive assertion at the end Co-authored-by:
Nemanja <31325167+nemanjaglumac@users.noreply.github.com>
-
Cam Saul authored
-
flamber authored
-
Robert Roland authored
This changes *only* the CSV/JSON/XLSX downloads to use a HTTP 200 response code instead of a HTTP 202. Resolves #11974
-
Jimmy Berry authored
Avoid ansi output from log4j2 so that the environment variable NO_COLOR behaves as expected.
-
Simon Belak authored
-
Console authored
-
Paul Rosenzweig authored
-
dpsutton authored