You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2022/01/10 12:44:06 UTC

[superset] branch master updated (c0a7695 -> d2d4f8e)

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

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


    from c0a7695  chore: bump typescript to 4.5.4, and adjust storybook story. (#17971)
     add d2d4f8e  feat: Add support for Azure Data Explorer (Kusto) db engine spec (#17898)

No new revisions were added by this update.

Summary of changes:
 docs/installation.rst                              |  17 +++
 .../pages/docs/Connecting to Databases/index.mdx   |   1 +
 .../pages/docs/Connecting to Databases/kusto.mdx   |  21 +++
 setup.py                                           |   1 +
 superset/db_engine_specs/base.py                   |   4 +
 superset/db_engine_specs/kusto.py                  | 164 +++++++++++++++++++++
 superset/models/core.py                            |   3 +-
 tests/unit_tests/db_engine_specs/test_base.py      |  27 +++-
 tests/unit_tests/db_engine_specs/test_kusto.py     | 155 +++++++++++++++++++
 9 files changed, 390 insertions(+), 3 deletions(-)
 create mode 100644 docs/src/pages/docs/Connecting to Databases/kusto.mdx
 create mode 100644 superset/db_engine_specs/kusto.py
 create mode 100644 tests/unit_tests/db_engine_specs/test_kusto.py