You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/06/20 17:54:26 UTC

[superset] branch master updated (fdef9cbc96 -> 93e1db4bd9)

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


    from fdef9cbc96 fix: Viz migration adjustments - 2 (#24429)
     add 93e1db4bd9 fix: save columns reference from sqllab save datasets flow (#24248)

No new revisions were added by this update.

Summary of changes:
 .../superset-ui-chart-controls/src/constants.ts    |   2 +-
 .../src/utils/columnChoices.ts                     |  13 +-
 .../test/utils/getTemporalColumns.test.ts          |   2 +-
 .../superset-ui-core/src/query/types/Query.ts      |  22 +--
 .../SqlLab/components/ResultSet/ResultSet.test.tsx |   4 +-
 .../src/SqlLab/components/ResultSet/index.tsx      |   6 +-
 .../SqlLab/components/SaveDatasetModal/index.tsx   |   8 +-
 superset-frontend/src/SqlLab/fixtures.ts           |  46 ++---
 .../src/components/Datasource/DatasourceEditor.jsx |  11 +-
 .../src/explore/components/SaveModal.tsx           |   2 -
 superset/connectors/base/models.py                 |   9 +-
 superset/connectors/sqla/models.py                 |  26 +--
 superset/connectors/sqla/utils.py                  |   4 +-
 superset/daos/query.py                             |   3 +
 superset/databases/utils.py                        |   4 +-
 superset/datasets/api.py                           |   2 +-
 superset/datasets/commands/create.py               |   4 +
 superset/db_engine_specs/base.py                   |  25 ++-
 superset/db_engine_specs/bigquery.py               |  18 +-
 superset/db_engine_specs/druid.py                  |   3 +-
 superset/db_engine_specs/hive.py                   |  11 +-
 superset/db_engine_specs/presto.py                 |  58 +++++--
 superset/models/core.py                            |   5 +-
 superset/models/sql_lab.py                         |   2 +-
 superset/result_set.py                             |   2 +-
 superset/superset_typing.py                        |  21 ++-
 superset/tables/models.py                          |   5 +-
 superset/views/utils.py                            |   4 +
 tests/integration_tests/datasets/api_tests.py      |   2 +-
 tests/integration_tests/datasource_tests.py        |  12 +-
 .../db_engine_specs/presto_tests.py                | 192 +++++++++++++++++----
 tests/integration_tests/result_set_tests.py        |  22 +--
 tests/unit_tests/config_test.py                    |  34 ++--
 tests/unit_tests/db_engine_specs/test_base.py      |  30 ++++
 tests/unit_tests/db_engine_specs/test_bigquery.py  |  22 ++-
 tests/unit_tests/db_engine_specs/test_presto.py    |  10 +-
 .../unit_tests/queries/dao_test.py                 |  34 ++--
 37 files changed, 468 insertions(+), 212 deletions(-)
 copy superset/sqllab/validators.py => tests/unit_tests/queries/dao_test.py (50%)