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 970272495 IMPALA-12798: Tolerate floationg point precision for
regr_intercept() TIMESTAMP test
new b7ddbcad0 IMPALA-12832: Implicit invalidate metadata on event failures
new ca3fe6d6a IMPALA-12692 : [DOCS] Typo in docs about random() function
The 2 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/catalog/catalog-server.cc | 26 ++
be/src/util/backend-gflag-util.cc | 11 +
common/thrift/BackendGflags.thrift | 8 +
docs/topics/impala_math_functions.xml | 2 +-
.../org/apache/impala/compat/MetastoreShim.java | 5 +
.../org/apache/impala/compat/MetastoreShim.java | 22 ++
.../impala/catalog/CatalogServiceCatalog.java | 12 +
.../impala/catalog/events/MetastoreEvents.java | 128 ++++++-
.../catalog/events/MetastoreEventsProcessor.java | 38 +-
.../org/apache/impala/service/BackendConfig.java | 20 ++
.../events/MetastoreEventsProcessorTest.java | 22 ++
tests/common/impala_test_suite.py | 18 +-
.../custom_cluster/test_event_processing_error.py | 386 +++++++++++++++++++++
tests/{ => metadata}/__init__.py | 0
tests/metadata/test_ddl.py | 2 +-
tests/metadata/test_event_processing.py | 304 +---------------
tests/metadata/test_event_processing_base.py | 348 +++++++++++++++++++
tests/metadata/test_reset_metadata.py | 2 +-
tests/util/event_processor_utils.py | 17 +-
19 files changed, 1063 insertions(+), 308 deletions(-)
create mode 100644 tests/custom_cluster/test_event_processing_error.py
copy tests/{ => metadata}/__init__.py (100%)
create mode 100644 tests/metadata/test_event_processing_base.py