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 2020/04/10 21:47:09 UTC

[incubator-superset] branch master updated (a8ce3bc -> 02b3fb1)

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/incubator-superset.git.


    from a8ce3bc  feat: Add post processing to QueryObject (#9427)
     add 02b3fb1  Add visualization flow to the CTA queries (#9370)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  20 ++++
 .../SqlLab/components/ExploreCtasResultsButton.jsx | 131 +++++++++++++++++++++
 .../src/SqlLab/components/ResultSet.jsx            |  45 +++++--
 .../sqllab/ExploreCtasResultsButton_spec.jsx       |  78 ++++++++++++
 .../SqlLab/components/ExploreCtasResultsButton.jsx | 131 +++++++++++++++++++++
 superset/connectors/sqla/models.py                 |   1 +
 superset/connectors/sqla/views.py                  |  35 +-----
 superset/models/sql_lab.py                         |   1 +
 superset/security/manager.py                       |   1 +
 superset/views/base.py                             |  45 ++++++-
 superset/views/core.py                             |  44 +++++++
 tests/sqllab_tests.py                              |  16 +++
 12 files changed, 505 insertions(+), 43 deletions(-)
 create mode 100644 superset-frontend/src/SqlLab/components/ExploreCtasResultsButton.jsx
 create mode 100644 superset/assets/spec/javascripts/sqllab/ExploreCtasResultsButton_spec.jsx
 create mode 100644 superset/assets/src/SqlLab/components/ExploreCtasResultsButton.jsx