-
- Downloads
Renamed columns are displayed correctly in downloads (#18572) (#37016)
* Renamed columns are displayed correctly in downloads (#18572) When custom viz settings or metadata is applied to questions and models, the downloaded artifact labels do not always mirror what is displayed on the tabular view in Metabase. This happens for several reasons: - The `:visualization_settings` were not applied to CSV and JSON downloads - `update-card-viz-settings` in `metabase.query-processor.middleware.visualization-settings` did not correctly merge keys, resulting in dropped column names in Excel file - The logic for reconciling column metadata in a result set and the keys in `:visualization_settings` of a query result is not straightforward This PR is an attempt to move this consistency in the right direction without fixing all the challenges of field matching as discussed in [this thread](https://metaboat.slack.com/archives/CKZEMT1MJ/p1703091539541279) and [this issue](Duplicated columns in a source query cannot be distinguished #36185) as this sounds like a significant effort. The following changes were made: 1. Update `metabase.query-processor.middleware.visualization-settings/update-card-viz-settings` to merge field settings, if present, into `column-viz-settings` without introducing new keys, especially ambiguous keys as follows: ```clojure (defn- update-card-viz-settings "For each field, fetch its settings from the QP store, convert the settings into the normalized form for visualization settings, and then merge in the card-level column settings." [column-viz-settings field-ids] ;; Retrieve field-level settings (let [field-id->settings (reduce (fn [m field-id] (let [field-settings (:settings (lib.metadata/field (qp.store/metadata-provider) field-id)) norm-field-settings (normalize-field-settings field-id field-settings)] (assoc m field-id norm-field-settings))) {} field-ids)] ;; For each column viz setting, if there is a match on the field settings, merge it in, ;; with the column viz settings being the default in the event of conflicts. (reduce-kv (fn [coll {field-id ::mb.viz/field-id :as k} column-viz-setting] (assoc coll k (merge (get field-id->settings field-id {}) column-viz-setting))) {} column-viz-settings))) ``` The primary difference is rather than merging in new keys as `{::mb.viz/field-id field-id} -> field-settings` this code will merge settings found by field id with any `column-viz-setting` containing that field id as part of its key. The merge prefers `column-viz-settings`. This should be an improvement over what already exists. 2. Move `column-titles` from `metabase.query-processor.streaming.xlsx` to `metabase.query-processor.streaming.common` and use this common function for CSV and JSON export names. Note that the lifted `column-titles` has some erroneous logic: - It relies on column `:name` or `:id` as unique identifiers -- they are not always unique. - It expects the `col-settings` key format to be exactly `{::mb.viz/field-id id}` or `{::mb.viz/column-name name}` -- Sometimes these keys have additional keys. One change made to this function is normalizing `col-settings` to conform to the expected format by removing extra keys. While this isn't a perfect solution, it conforms with the intent of what already exists and is an improvement in the majority of cases. The _right_ thing to do is _probably_ to use `metabase.lib.equality/find-matching-column` to match the column and settings keys, _but_ the `col-settings` keys are in a weird format that isn't really conducive to doing this. I'd rather we make an incremental step forward and try doing this in another effort. This second change should not make anything that wasn't already problematic worse, while making the general case better. * Updated `update-card-viz-settings` for unique fields case When `update-card-viz-settings` is called, sometimes fields have ids that aren't part of the `column-viz-settings` map. For cases where they are part of the viz settings map, they are merged in, potentially more than once. For cases where the field ids aren't found in the column viz settings but do have settings, we add these in as new entries. * Test for JSON keys * Fixed broken unit test that had the wrong data shape.
Showing
- src/metabase/query_processor/middleware/visualization_settings.clj 24 additions, 6 deletions...ase/query_processor/middleware/visualization_settings.clj
- src/metabase/query_processor/streaming/common.clj 51 additions, 0 deletionssrc/metabase/query_processor/streaming/common.clj
- src/metabase/query_processor/streaming/csv.clj 7 additions, 5 deletionssrc/metabase/query_processor/streaming/csv.clj
- src/metabase/query_processor/streaming/json.clj 8 additions, 7 deletionssrc/metabase/query_processor/streaming/json.clj
- src/metabase/query_processor/streaming/xlsx.clj 6 additions, 54 deletionssrc/metabase/query_processor/streaming/xlsx.clj
- test/metabase/api/card_test.clj 87 additions, 1 deletiontest/metabase/api/card_test.clj
- test/metabase/pulse/pulse_integration_test.clj 137 additions, 0 deletionstest/metabase/pulse/pulse_integration_test.clj
- test/metabase/query_processor/streaming/xlsx_test.clj 1 addition, 1 deletiontest/metabase/query_processor/streaming/xlsx_test.clj
Please register or sign in to comment