This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from feefcc639 IMPALA-12518: Combine all exec_option dimension in
test_vector.py
new e9acc12a8 IMPALA-12415: Implement tests for graphical query timeline
in webUI
new 6811a0088 IMPALA-12524: Deduplicate TestTextScanRangeLengths
new c77a45752 IMPALA-7131: Support external data sources in LocalCatalog
mode
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
bin/impala-config.sh | 1 +
bin/run-all-tests.sh | 8 +
common/thrift/CatalogService.thrift | 5 +-
.../impala/catalog/CatalogServiceCatalog.java | 40 +-
.../impala/catalog/local/CatalogdMetaProvider.java | 100 +++++
.../impala/catalog/local/DirectMetaProvider.java | 15 +
.../apache/impala/catalog/local/LocalCatalog.java | 55 ++-
.../impala/catalog/local/LocalDataSourceTable.java | 146 +++++++
.../apache/impala/catalog/local/LocalTable.java | 2 +-
.../apache/impala/catalog/local/MetaProvider.java | 11 +
.../apache/impala/service/CatalogOpExecutor.java | 2 -
.../queries/QueryTest/data-source-tables.test | 56 +++
.../queries/QueryTest/jdbc-data-source.test | 94 ++++-
tests/common/skip.py | 7 -
...spatial_library.py => test_ext_data_sources.py} | 35 +-
tests/custom_cluster/test_local_catalog.py | 5 +-
tests/metadata/test_ddl.py | 1 -
tests/metadata/test_metadata_query_statements.py | 1 -
tests/query_test/test_ext_data_sources.py | 27 +-
tests/query_test/test_scanners.py | 9 +-
tests/run-js-tests.sh | 58 +++
www/scripts/query_timeline/chart_commons.js | 11 +
www/scripts/query_timeline/fragment_diagram.js | 7 +
.../scripts/query_timeline/global_dom.js | 22 +-
.../query_timeline/host_utilization_diagram.js | 7 +
www/scripts/query_timeline/package.json | 5 +
www/scripts/tests/.gitignore | 2 +
www/scripts/tests/package.json | 20 +
.../tests/query_timeline/chart_commons.test.js | 464 +++++++++++++++++++++
.../tests/query_timeline/fragment_diagram.test.js | 66 +++
.../host_utilization_diagram.test.js | 73 ++++
31 files changed, 1281 insertions(+), 74 deletions(-)
create mode 100644
fe/src/main/java/org/apache/impala/catalog/local/LocalDataSourceTable.java
copy tests/custom_cluster/{test_geospatial_library.py =>
test_ext_data_sources.py} (55%)
create mode 100755 tests/run-js-tests.sh
copy be/src/common/global-flags.h => www/scripts/query_timeline/global_dom.js
(68%)
create mode 100644 www/scripts/query_timeline/package.json
create mode 100644 www/scripts/tests/.gitignore
create mode 100644 www/scripts/tests/package.json
create mode 100644 www/scripts/tests/query_timeline/chart_commons.test.js
create mode 100644 www/scripts/tests/query_timeline/fragment_diagram.test.js
create mode 100644
www/scripts/tests/query_timeline/host_utilization_diagram.test.js