Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Nov 19, 2020
  2. Nov 18, 2020
  3. Nov 13, 2020
  4. Nov 12, 2020
  5. Nov 11, 2020
    • Cam Saul's avatar
      Mega sync performance improvements (#13746) · a81ae199
      Cam Saul authored
      * Add a Postgres test [ci postgres]
      
      * Mega-optimized SELECT probe query [ci drivers]
      
      * Mega sync improvements [ci drivers]
      
      * Even more amazing sync perf improvements [ci drivers]
      
      * Fix bad edit [ci drivers]
      
      * Test/lint fixes :wrench:
      
      * Test fix :wrench: [ci drivers]
      
      * Some driver fixes :wrench: [ci drivers]
      
      * Address PR feedback [ci drivers]
      
      * Test fixes for everything except for Oracle [ci drivers]
      
      * Fix Oracle [ci drivers]
      
      * Fix Redshift [ci redshift]
      Unverified
      a81ae199
  6. Nov 09, 2020
  7. Nov 06, 2020
    • dpsutton's avatar
      Fingerprints reduce over table-rows-sample instead of realizing all (#13688) · 1256e7b8
      dpsutton authored
      * Fingerprints reduce over table-rows-sample instead of realizing all
      
      tests are failing because we test fingerprinters a lot by supplying
      fake results and then reducing over those results. Now we are reducing
      over them in the query processor and need to get a better testing
      strategy.
      
      I think i can stub out the query-processor to take the `:rff` and just
      transduce over some fake supplied results but need to verify
      
      * Hijack query-processor to use rff on fake data
      
      * Docstring and make private `table-rows-sample-query`
      
      * Fix tests to use query function rather than hijack qp
      
      also was calling empty not empty? :(
      
      * drivers check [ci drivers]
      
      * Docstring cleanup for rff and remove outdated comment
      
      * Make rff required for table-rows-sample
      
      now you must reduce over the reducible row set rather than realizing
      the results in memory and then working with them
      
      * empty commit for drivers [ci drivers]
      Unverified
      1256e7b8
  8. Nov 05, 2020
  9. Oct 30, 2020
  10. Oct 29, 2020
    • Cam Saul's avatar
      Fix collections graph stack overflow (#13618) · dc39729d
      Cam Saul authored
      * Fix collections/graph stack overflow
      
      * Test fixes :wrench:
      
       [ci postgres] [ci mysql]
      
      * Show engine in Task trouble shooting logs (#13608)
      
      * Show engine in Task trouble shooting logs
      
      in an effort to get better feedback when people raise issues about
      long running sync processes, include the database engine in the logs.
      
      Also wrapped `th` in a `tr` inside the `thead` to remove react warning
      
      * Const intead of let on the db_id_to_engine
      
      * Swap db id for db name
      
      * Move comment out of jsx
      
      * fixup! Merge branch 'release-x.37.x' into fix-collections-graph-stack-overflow
      
      Co-authored-by: default avatardpsutton <dan@dpsutton.com>
      Unverified
      dc39729d
  11. Oct 27, 2020
    • Tim Macdonald's avatar
      [Fixes #11879] [Fixes #8410] Don't wrap email attachment filenames (#13563) · 91ff78a2
      Tim Macdonald authored
      * [Fixes #11879] [Fixes #8410] Don't wrap email attachment filenames
      
      * Non-ASCII characters in filenames are encoded [as per IETF RFC
        2047](https://tools.ietf.org/html/rfc2047) (c.f. #8410)
      * Sufficiently-long _encoded_ filenames are sent over multiple lines
          as per [RFC 2184 section
          3](https://tools.ietf.org/html/rfc2184#section-3), for example:
      
          ```
          Content-Disposition: attachment;
            filename*0="=?UTF-8?Q?T=C3=A9=C5=BFting_non-ASCII_=C4=8D=C4=A5=C3=A4ract";
            filename*1="ers.xlsx?="
          ```
      * Many mail clients do the right thing, but Gmail does not
      
      This commit therefore turns off wrapping, as per [Bill Shannon's
      Stack Overflow answer re. an undocumented system
      property](https://stackoverflow.com/a/53344141/220529)
      (Bill Shannon co-wrote the Java email library, which is used by postal
      (the Clojure wrapper we use).
      
      * (Hopefully) fix race condition in dashboard drill Cypress spec
      
      Suggested by @flamber
      
      * Skip flaky Cypress tests (per Nemanja)
      
      * Only set `mail.mime.splitlongparameters` once
      Unverified
      91ff78a2
  12. Oct 23, 2020
  13. Oct 22, 2020
  14. Oct 21, 2020
  15. Oct 20, 2020
    • Robert Roland's avatar
      Fixing of TIME breakouts in MySQL (#12907) · 2f23e82e
      Robert Roland authored
      * Fixing of TIME breakouts in MySQL
      
      Reworks :hour and :minute breakouts to function on MySQL 5.5+ and
      MariaDB 10.2+
      
      Older versions of MySQL and newer versions of MariaDB do not accept a
      date of 0000-00-00, which date_format was generating. In the cases where
      we're attempting to truncate the date and normalize them all to group by
      hours or minutes, this will cast the TIME to DATETIME, which will make
      it possible to convert it back to the proper type after truncation.
      
      Adds an additional two test cases for grouping on a TIME column (both
      :hour and :minute)
      
      Resolves #12846
      
      [ci mysql]
      
      * Switch to hx/cast instead of a custom cast defn
      
      [ci mysql]
      Unverified
      2f23e82e
  16. Oct 19, 2020
    • Cam Saul's avatar
    • dpsutton's avatar
      Smarter state fields (#13512) · d419043e
      dpsutton authored
      * Mark state fields by fingerprint fixes #2735 [ci drivers]
      
      * fix tests for pg, ns sort, and docstring lint
      
      * Expectations -> clojure.test
      
      * minor alignment in test
      
      * Allow fingerprint classifiers to override prev classifier special_type
      
      if another classifier threw on a special type due to name or the
      number of items in the collection, this should override it as it is
      introspecting values.
      
      States previously were marked ":type/State" based on the column
      name. Now use a fingerprinter looking for state names. Owing to the
      fact that there might be more things in the state column (US
      territory, canadian states, Washington DC, etc) lowered the threshold
      for recognizing a state column from 95% of values down to 70% of
      values.
      
      * Cleanup [ci drivers]
      
      - remark about original field in metadata
      - docstring on `can-edit-special-field?`
      - cleanup and check for string in `state?`
      - add tests that nils and other types don't break `state?`
      
      * Include test file
      Unverified
      d419043e
    • Robert Roland's avatar
      Fix mysql build breakage (#13523) · 2c1b4305
      Robert Roland authored
      When your app db is H2, this test will fail with a NumberFormatException
      trying to parse the "not-an-integer" but the MySQL JDBC driver does not
      behave the same. It is sufficient to test exception conditions return a
      {} query description only under the H2 app-db, since it's a catch-all
      handler.
      Unverified
      2c1b4305
  17. Oct 16, 2020
  18. Oct 15, 2020
  19. Oct 14, 2020
Loading