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

prozsa pushed a change to branch branch-4.5.0
in repository https://gitbox.apache.org/repos/asf/impala.git


 discard 5c0704604 Release 4.5.0
 discard 8058e16ed IMPALA-13770 (Addendum): Close expressions in 
IcebergMergeCasePlan
 discard bab5308cd IMPALA-13770: Updating Iceberg tables with UDFs crashes 
Impala
 discard e4e80edef IMPALA-13768: Redundant Iceberg delete records are shuffled 
around which cause error "Invalid file path arrived at builder"
 discard 2b761500a IMPALA-13771: Fix heap-use-after-free in Cluster Membership 
Manager
 discard 48e50184e IMPALA-13759: Fix Hive ACID INSERT OVERWRITE base detection
 discard 1d7d0ef51 IMPALA-13761: Fix test_coord_only_pool_exec_groups
 discard b47830268 IMPALA-13201: System Table Queries Execute When Admission 
Queues are Full
 discard d40793f6f IMPALA-13736: Fix Use-After-Free in 
ExecutorGroup.RemoveExecutor
 discard fb4c504d9 IMPALA-13201: Remove Unused Parameter from Test retry 
Function
 discard e4b5f3600 IMPALA-13747: Use fresh HS2 client for unique_database 
fixture
    omit 17e99767a IMPALA-13728: OpenSSLUtilTest.ValidateInitialize failed by 
AES_128_GCM not supported
    omit f1f0680f8 IMPALA-13742: Force python3 for CPack
     new 678628154 IMPALA-13705: Environment specific errors in 
test_encryption_exprs
     new e753e94a7 IMPALA-13694: Add ImpalaTestSuite.__reset_impala_clients 
method
     new fa07a4bd7 IMPALA-13736: Fix Use-After-Free in 
ExecutorGroup.RemoveExecutor
     new f2f9a960a IMPALA-13201: Remove Unused Parameter from Test retry 
Function
     new a3862334c IMPALA-13672: Migrate query_test/test_kudu.py to use hs2 
protocol
     new 5846253ba IMPALA-13742: Force python3 for CPack
     new 79626e2b9 IMPALA-13728: OpenSSLUtilTest.ValidateInitialize failed by 
AES_128_GCM not supported
     new 841ac3c14 IMPALA-13747: Use fresh HS2 client for unique_database 
fixture
     new 154556eec IMPALA-13201: System Table Queries Execute When Admission 
Queues are Full
     new 1c764c6f5 IMPALA-13761: Fix test_coord_only_pool_exec_groups
     new e5b785cd3 IMPALA-13759: Fix Hive ACID INSERT OVERWRITE base detection
     new e0fa4fa84 IMPALA-13771: Fix heap-use-after-free in Cluster Membership 
Manager
     new 7eeb89cb3 IMPALA-13768: Redundant Iceberg delete records are shuffled 
around which cause error "Invalid file path arrived at builder"
     new d4eb03b38 IMPALA-13770: Updating Iceberg tables with UDFs crashes 
Impala
     new da16bcd0f IMPALA-13770 (Addendum): Close expressions in 
IcebergMergeCasePlan
     new 01bc47c91 Release 4.5.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5c0704604)
            \
             N -- N -- N   refs/heads/branch-4.5.0 (01bc47c91)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 16 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/exprs/string-functions-ir.cc                |    2 +-
 be/src/exprs/string-functions.cc                   |   10 +-
 be/src/util/openssl-util.cc                        |   14 +-
 bin/save-version.sh                                |    2 +-
 .../java/org/apache/impala/catalog/FeFsTable.java  |    1 -
 .../org/apache/impala/catalog/FeKuduTable.java     |    2 +-
 .../java/org/apache/impala/catalog/HdfsTable.java  |    2 +-
 .../org/apache/impala/util/TResultRowBuilder.java  |    7 +
 .../queries/QueryTest/encryption_exprs.test        |  456 ------
 .../QueryTest/encryption_exprs_aes_128_ecb.test    |   23 +
 .../QueryTest/encryption_exprs_aes_128_gcm.test    |   84 ++
 .../QueryTest/encryption_exprs_aes_256_cfb.test    |   79 ++
 .../QueryTest/encryption_exprs_aes_256_ctr.test    |   66 +
 .../QueryTest/encryption_exprs_aes_256_ecb.test    |   15 +
 .../QueryTest/encryption_exprs_aes_256_gcm.test    |  140 ++
 .../queries/QueryTest/encryption_exprs_errors.test |   55 +
 .../queries/QueryTest/kudu-scan-node.test          |    2 +
 .../QueryTest/kudu_create_table_like_table.test    |    5 +-
 .../queries/QueryTest/kudu_delete.test             |   54 +-
 .../queries/QueryTest/kudu_insert.test             |   54 +-
 .../queries/QueryTest/kudu_update.test             |   40 +-
 .../queries/QueryTest/kudu_upsert.test             |   42 +-
 tests/authorization/test_authorization.py          |    7 +-
 tests/beeswax/impala_beeswax.py                    |    4 +-
 tests/common/base_test_suite.py                    |    7 +-
 tests/common/impala_connection.py                  |   53 +-
 tests/common/impala_test_suite.py                  |  186 ++-
 tests/common/kudu_test_suite.py                    |   22 +-
 tests/common/test_dimensions.py                    |   36 +-
 tests/common/test_result_verifier.py               |   13 +-
 tests/common/test_vector.py                        |   47 +-
 tests/conftest.py                                  |   15 +-
 tests/custom_cluster/test_admission_controller.py  |    6 +-
 tests/custom_cluster/test_hs2_fault_injection.py   |    6 +-
 tests/custom_cluster/test_kudu.py                  |   12 +-
 tests/custom_cluster/test_mt_dop.py                |    7 +-
 .../test_runtime_filter_aggregation.py             |    3 +
 tests/hs2/hs2_test_suite.py                        |    6 +
 tests/hs2/test_fetch.py                            |   21 +-
 tests/infra/test_thrift_parser.py                  |   36 +-
 tests/infra/test_utils.py                          |   80 +-
 tests/query_test/test_exprs.py                     |  153 +-
 tests/query_test/test_hdfs_caching.py              |   88 +-
 tests/query_test/test_iceberg.py                   |    6 +
 tests/query_test/test_insert_behaviour.py          |   10 +-
 tests/query_test/test_kudu.py                      | 1480 +++++++++++---------
 tests/query_test/test_observability.py             |    4 +-
 tests/query_test/test_runtime_filters.py           |    3 +
 tests/statestore/test_statestore.py                |   56 +-
 tests/unittests/test_command.py                    |    7 +-
 tests/verifiers/test_banned_log_messages.py        |    4 +-
 51 files changed, 2046 insertions(+), 1487 deletions(-)
 delete mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_128_ecb.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_128_gcm.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_256_cfb.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_256_ctr.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_256_ecb.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_aes_256_gcm.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_errors.test

Reply via email to