This is an automated email from the ASF dual-hosted git repository.
boroknagyz pushed a change to branch branch-4.4.0
in repository https://gitbox.apache.org/repos/asf/impala.git
from 74960cca6 IMPALA-12977: add search and pagination to /hadoop-varz
new 01401a036 IMPALA-12910: Support running TPCH/TPCDS queries for JDBC
tables
new 045bdb0c8 IMPALA-13054: Avoid revisiting children in QueryStateExpanded
new 39233ba3d IMPALA-13045: Wait for impala_query_live to exist
new 338fedb44 IMPALA-13061: Create query live as external table
new b8a66b0e1 IMPALA-11499: Refactor UrlEncode function to handle special
characters
The 5 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:
be/src/exec/data-source-scan-node.cc | 1 +
be/src/service/frontend.cc | 13 +
be/src/service/query-options.cc | 4 +
be/src/service/query-options.h | 3 +-
be/src/service/query-state-record.cc | 34 +-
be/src/service/workload-management.cc | 5 +-
be/src/util/backend-gflag-util.cc | 6 +
be/src/util/coding-util-test.cc | 14 +-
be/src/util/coding-util.cc | 39 +-
common/thrift/BackendGflags.thrift | 6 +
common/thrift/ExternalDataSource.thrift | 5 +
common/thrift/ImpalaService.thrift | 5 +
common/thrift/Query.thrift | 2 +
.../impala/extdatasource/jdbc/JdbcDataSource.java | 55 +-
.../jdbc/conf/JdbcStorageConfigManager.java | 2 +-
.../jdbc/dao/DataSourceObjectCache.java | 211 ++++++
.../extdatasource/jdbc/dao/DatabaseAccessor.java | 3 +-
.../jdbc/dao/GenericJdbcDatabaseAccessor.java | 118 ++-
.../extdatasource/jdbc/dao/JdbcRecordIterator.java | 4 +-
.../org/apache/impala/service/BackendConfig.java | 12 +
testdata/bin/create-load-data.sh | 7 +-
testdata/bin/create-tpc-jdbc-tables.py | 182 +++++
.../datasets/tpcds/tpcds_jdbc_schema_template.sql | 804 +++++++++++++++++++++
.../datasets/tpch/tpch_jdbc_schema_template.sql | 200 +++++
.../functional-query/queries/QueryTest/insert.test | 18 +
.../queries/QueryTest/unicode-column-name.test | 36 +
tests/common/skip.py | 2 +
tests/custom_cluster/test_query_live.py | 38 +-
tests/query_test/test_insert.py | 63 ++
tests/query_test/test_tpcds_queries.py | 373 +++++++++-
tests/query_test/test_tpch_queries.py | 29 +-
31 files changed, 2161 insertions(+), 133 deletions(-)
create mode 100644
fe/src/main/java/org/apache/impala/extdatasource/jdbc/dao/DataSourceObjectCache.java
create mode 100755 testdata/bin/create-tpc-jdbc-tables.py
create mode 100644 testdata/datasets/tpcds/tpcds_jdbc_schema_template.sql
create mode 100644 testdata/datasets/tpch/tpch_jdbc_schema_template.sql