You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2024/03/13 22:27:08 UTC

(superset) branch master updated (a75bb7685d -> 26d8077e97)

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

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


    from a75bb7685d chore: Add an extension for Home submenu (#27480)
     add 26d8077e97 chore: improve SQL parsing (#26767)

No new revisions were added by this update.

Summary of changes:
 .../cypress/e2e/explore/AdhocMetrics.test.ts       |   2 +-
 .../e2e/explore/visualizations/table.test.ts       |   4 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   1 +
 superset/connectors/sqla/models.py                 |  53 +-----
 superset/db_engine_specs/base.py                   |   4 +-
 superset/db_engine_specs/postgres.py               |   7 +-
 superset/errors.py                                 |   2 +
 superset/exceptions.py                             |  17 ++
 superset/models/helpers.py                         |  27 ++-
 superset/sql_parse.py                              | 190 ++++++++++++++++++++-
 superset/sqllab/api.py                             |   4 +-
 superset/sqllab/schemas.py                         |   1 +
 tests/integration_tests/celery_tests.py            |   8 +-
 tests/integration_tests/charts/data/api_tests.py   |   8 +-
 tests/integration_tests/core_tests.py              |   2 +-
 tests/integration_tests/datasource_tests.py        |   2 +-
 .../db_engine_specs/base_engine_spec_tests.py      |   5 +-
 .../db_engine_specs/bigquery_tests.py              |   2 +-
 tests/integration_tests/model_tests.py             |  57 +------
 tests/integration_tests/query_context_tests.py     |  67 +++++---
 .../security/row_level_security_tests.py           |   4 +-
 tests/integration_tests/sql_lab/api_tests.py       |   2 +-
 tests/integration_tests/sqla_models_tests.py       |  21 ++-
 tests/unit_tests/db_engine_specs/test_base.py      |   6 +-
 tests/unit_tests/db_engine_specs/test_bigquery.py  |   7 +-
 tests/unit_tests/jinja_context_test.py             |  52 +++---
 tests/unit_tests/sql_parse_tests.py                |  35 ++++
 27 files changed, 394 insertions(+), 196 deletions(-)