This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 1753c3aa7c4829882fd9d32518da9b7a667f5cf1 Author: Peter Rozsa <[email protected]> AuthorDate: Fri Feb 6 14:39:59 2026 +0100 IMPALA-14683: remove AES_128_GCM test case from encryption_exprs_errors This change removes AES_128_GCM aes_decrypt test case as the AES_256_GCM checks the same code path and therefore it gives no additional value. This test could have failed on systems where the openssl version already deprecated the AES_128_GCM mode. Change-Id: If6cf709d6e16a8d0e70037d4545c9de12cacf251 Reviewed-on: http://gerrit.cloudera.org:8080/23947 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Peter Rozsa <[email protected]> --- .../functional-query/queries/QueryTest/encryption_exprs_errors.test | 6 ------ 1 file changed, 6 deletions(-) diff --git a/testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_errors.test b/testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_errors.test index 74d1c0817..e774fc4cb 100644 --- a/testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_errors.test +++ b/testdata/workloads/functional-query/queries/QueryTest/encryption_exprs_errors.test @@ -54,12 +54,6 @@ select aes_decrypt(base64decode('F/DLkSwEikFOlqzXVCysy1JX7Q=='),'123456789012345 UDF ERROR: Invalid AES 'mode': AES_256_GC ==== ---- QUERY -select aes_decrypt("a",'1234567890123456','AES_128_GCM','1234567890123456'); ----- RESULTS ----- CATCH -UDF ERROR: AES GCM input too short to contain a tag -==== ----- QUERY select aes_decrypt("a",'12345678901234567890123456789012','AES_256_GCM','1234567890123456'); ---- RESULTS ---- CATCH
