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

[incubator-superset] branch master updated (4f8bf2b -> 6537d5e)

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

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


    from 4f8bf2b  [database] [log] Fix, Limit the amount of info on response (#8918)
     add 6537d5e  Replace pandas.DataFrame with PyArrow.Table for nullable int typing (#8733)

No new revisions were added by this update.

Summary of changes:
 .../sqllab/ExploreResultsButton_spec.jsx           |   2 -
 .../assets/spec/javascripts/sqllab/fixtures.js     |  10 -
 superset/config.py                                 |   2 +-
 superset/dataframe.py                              | 259 +--------------------
 superset/db_engine_specs/base.py                   |   6 -
 superset/db_engine_specs/bigquery.py               |  20 --
 superset/db_engine_specs/postgres.py               |   8 +
 superset/db_engine_specs/presto.py                 |  21 --
 superset/result_set.py                             | 177 ++++++++++++++
 superset/sql_lab.py                                |  30 ++-
 superset/views/core.py                             |   7 +-
 tests/celery_tests.py                              |  18 +-
 tests/core_tests.py                                |  51 ++--
 tests/dataframe_test.py                            | 140 ++---------
 tests/result_set_tests.py                          | 150 ++++++++++++
 tests/sqllab_tests.py                              |  42 ++--
 16 files changed, 434 insertions(+), 509 deletions(-)
 create mode 100644 superset/result_set.py
 create mode 100644 tests/result_set_tests.py