You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by bk...@apache.org on 2020/08/27 16:50:33 UTC

[incubator-superset] branch master updated (81525c3 -> 19a9bcc)

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

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


    from 81525c3  feat(listview): set default view mode based on THUMBNAIL feature flag (#10691)
     add 19a9bcc  chore: ci Initial hive support (#10593)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/superset-python.yml              | 57 +++++++++++++
 .pylintrc                                          |  2 +-
 requirements/base.txt                              | 18 ++---
 requirements/docker.txt                            |  6 +-
 requirements/documentation.txt                     |  2 +-
 requirements/integration.txt                       | 12 +--
 requirements/testing.in                            |  5 ++
 requirements/testing.txt                           | 24 +++++-
 .../docker.in => scripts/databases/hive/Makefile   |  7 +-
 scripts/databases/hive/docker-compose.yml          | 79 ++++++++++++++++++
 scripts/databases/hive/hadoop-hive.env             | 46 +++++++++++
 .../databases/hive/startup.sh                      | 16 ++--
 superset/config.py                                 |  4 +
 superset/db_engine_specs/hive.py                   | 62 ++++++++-------
 superset/db_engine_specs/presto.py                 |  5 +-
 superset/examples/energy.py                        |  1 +
 superset/examples/unicode_test_data.py             |  1 +
 tests/base_tests.py                                |  1 +
 tests/celery_tests.py                              | 30 +++----
 tests/conftest.py                                  | 55 ++++++++++++-
 tests/core_tests.py                                |  4 +-
 tests/csv_upload_tests.py                          | 93 +++++++++++++++++-----
 tests/datasets/api_tests.py                        | 10 ++-
 tests/db_engine_specs/base_engine_spec_tests.py    |  2 +
 tests/model_tests.py                               | 61 +++++++++-----
 tests/sql_validator_tests.py                       | 12 ++-
 tests/sqla_models_tests.py                         |  2 +-
 tests/sqllab_test_util.py                          | 57 -------------
 tests/sqllab_tests.py                              |  5 +-
 tests/superset_test_config.py                      |  7 ++
 tox.ini                                            | 10 ++-
 31 files changed, 498 insertions(+), 198 deletions(-)
 copy requirements/docker.in => scripts/databases/hive/Makefile (87%)
 create mode 100644 scripts/databases/hive/docker-compose.yml
 create mode 100644 scripts/databases/hive/hadoop-hive.env
 copy superset-frontend/js_build.sh => scripts/databases/hive/startup.sh (78%)
 mode change 100755 => 100644
 delete mode 100644 tests/sqllab_test_util.py