This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jun 18, 2021
-
-
Anton Kulyk authored
* Fix incorrect question variable links * Extract method building question URL
-
Anton Kulyk authored
* Unskip the repro * Add `isPersonalCollectionChild` utility * Hide permission control for personal collections * Hide permissions modal for personal collections * Handle missing `collection.effective_ancestors` * Use `sidebar` cypress selector
-
- Jun 17, 2021
-
-
Ariya Hidayat authored
-
Noah Moss authored
-
Alexander Lesnenko authored
* fix trend visualization is not visible if the first column is not date * skip repro * review fix
-
Dalton authored
* don't apply parameter filters to object queries * unskip #8055 repro as well
-
Noah Moss authored
-
Alexander Lesnenko authored
* add units to new columns, add hover state for column headers * fixup! add units to new columns, add hover state for column headers * hide loader when filtering or sorting audit table * fix tests
-
dpsutton authored
No tests caught this because of compounding errors on top of a generic solution that already worked: for h2, defined unix-timestamp->honeysql on [:h2 :millisecond] but :millisecond is not a valid dispatch key, it is always milliseconds (plural). And it was duplicated forgetting to use :microseconds. But this all worked because there are defaults in the sql/query_processor ```clojure (defmethod unix-timestamp->honeysql [:sql :milliseconds] [driver _ expr] (unix-timestamp->honeysql driver :seconds (hx// expr 1000))) (defmethod unix-timestamp->honeysql [:sql :microseconds] [driver _ expr] (unix-timestamp->honeysql driver :seconds (hx// expr 1000000))) ``` so h2 was always using these fallbacks with the division: ```sql "SELECT \"PUBLIC\".\"INCIDENTS\".\"ID\" AS \"ID\", \"PUBLIC\".\"INCIDENTS\".\"SEVERITY\" AS \"SEVERITY\", timestampadd('second', (\"PUBLIC\".\"INCIDENTS\".\"TIMESTAMP\"/1000000),--note division timestamp '1970-01-01T00:00:00Z') AS \"TIMESTAMP\" FROM \"PUBLIC\".\"INCIDENTS\" LIMIT 1048575" ``` rather than the h2 optimized form: ```sql "SELECT \"PUBLIC\".\"INCIDENTS\".\"ID\" AS \"ID\", \"PUBLIC\".\"INCIDENTS\".\"SEVERITY\" AS \"SEVERITY\", timestampadd('microsecond', --note microseconds \"PUBLIC\".\"INCIDENTS\".\"TIMESTAMP\", timestamp '1970-01-01T00:00:00Z') AS \"TIMESTAMP\" FROM \"PUBLIC\".\"INCIDENTS\" LIMIT 1048575" ``` The end result is that the defmethods were never called and the default was used. So a bug, but not one that was visible. Good catch jeff
-
- Jun 16, 2021
-
-
Cam Saul authored
Merge `39.4` into `master`
-
Ariya Hidayat authored
-
Noah Moss authored
-
Dalton authored
-
Nemanja authored
-
-
Nemanja authored
-
Nemanja Glumac authored
* Move test inside a describe block * Add repros for #16379
-
Gustavo Saiani authored
-
Howon Lee authored
-
Gustavo Saiani authored
-
Alexander Lesnenko authored
* keep click_behavior settings when reset cards settings * unskip repro * review fix
-
Ariya Hidayat authored
-
Nemanja Glumac authored
-
Nemanja Glumac authored
-
Dalton authored
* add seriesIndex back to clicked object * use transformed series when handled viz click * unskip repro for related issue * add additional test for this bug
-
Dalton authored
-
Anton Kulyk authored
-
Jeff Evans authored
Fix typo in DS name for app DB Add test assertion
-
Nemanja Glumac authored
* Add new 'binning' e2e group to the CI * Add initial set of tests for the binning options (buckets)
-
Alexander Lesnenko authored
-
Dalton authored
* stop hiding broken params * Refactor and unskip the repro for #15279 (#16592) Co-authored-by:
Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com>
-
Dalton authored
* refetch card on RELOAD_CARD action * fetch via question entity to update cache * unskip & fix cy test
-
Gustavo Saiani authored
-
dpsutton authored
* Extract largish sort-order function also, running tests locally could run into timezone issues. only interested in comparisons (<) so just make sure that its 24 hours in the past so no issues with time zones * tests are pretty literal but just satisfying the test checker * bump coverage from 71 to hopefully 75%
-
Nemanja Glumac authored
* Add repro for #16555 * Extract common logic into variables * Update the assertion
-
Nemanja Glumac authored
-
Nemanja Glumac authored
-
Gustavo Saiani authored
-
Gustavo Saiani authored
-
- Jun 15, 2021
-
-
Dalton authored
* exclude parameters from isDirty check * prevent calling methods on null originalQuestion * rmv Save reliance in e2e test * code refactor * unskip repro * rmv #520 workaround test because bug is fixed * revert to previous sandbox.cy.spec.js * skip workaround test * add explanatory comment
-