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 2021/12/15 02:37:13 UTC

[superset] branch master updated (2a6e5e5 -> 37cc2c4)

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 2a6e5e5  fix: import DB errors (#17748)
     add 37cc2c4  fix: column extra in import/export (#17738)

No new revisions were added by this update.

Summary of changes:
 superset/datasets/commands/export.py               |  15 +-
 superset/datasets/commands/importers/v1/utils.py   |  32 ++--
 superset/datasets/schemas.py                       |   3 +-
 tests/unit_tests/conftest.py                       |  41 ++++-
 .../commands/importers/v1 => datasets}/__init__.py |   0
 .../importers/v1 => datasets/commands}/__init__.py |   0
 tests/unit_tests/datasets/commands/export_test.py  | 192 +++++++++++++++++++++
 .../v1 => datasets/commands/importers}/__init__.py |   0
 .../commands/importers/v1/__init__.py              |   0
 .../datasets/commands/importers/v1/import_test.py  | 190 ++++++++++++++++++++
 10 files changed, 448 insertions(+), 25 deletions(-)
 copy tests/unit_tests/{dashboards/commands/importers/v1 => datasets}/__init__.py (100%)
 copy tests/unit_tests/{dashboards/commands/importers/v1 => datasets/commands}/__init__.py (100%)
 create mode 100644 tests/unit_tests/datasets/commands/export_test.py
 copy tests/unit_tests/{dashboards/commands/importers/v1 => datasets/commands/importers}/__init__.py (100%)
 copy tests/unit_tests/{dashboards => datasets}/commands/importers/v1/__init__.py (100%)
 create mode 100644 tests/unit_tests/datasets/commands/importers/v1/import_test.py