From 164af8526a6ba534a6718390cd1bd58d2de8560f Mon Sep 17 00:00:00 2001 From: Socrates Date: Mon, 19 Jan 2026 19:32:47 +0800 Subject: [PATCH] fix(test): update regex for filtered groups and change hive prefix to hive3 --- .../hive/test_parquet_join_runtime_filter.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/external_table_p0/hive/test_parquet_join_runtime_filter.groovy b/regression-test/suites/external_table_p0/hive/test_parquet_join_runtime_filter.groovy index a71d5a1f0fa090..b2bbb5e8421c94 100644 --- a/regression-test/suites/external_table_p0/hive/test_parquet_join_runtime_filter.groovy +++ b/regression-test/suites/external_table_p0/hive/test_parquet_join_runtime_filter.groovy @@ -41,7 +41,7 @@ suite("test_parquet_join_runtime_filter", "p0,external,hive,external_docker,exte def extractFilteredGroupsValue = { String profileText -> - def values = (profileText =~ /FilteredGroups:\s*(\d+)/).collect { it[1].toLong() } + def values = (profileText =~ /RowGroupsFiltered:\s*(\d+)/).collect { it[1].toLong() } return values.sort { a, b -> b <=> a } } @@ -76,7 +76,7 @@ suite("test_parquet_join_runtime_filter", "p0,external,hive,external_docker,exte if (!"true".equalsIgnoreCase(enabled)) { return; } - for (String hivePrefix : ["hive2"]) { + for (String hivePrefix : ["hive3"]) { String externalEnvIp = context.config.otherConfigs.get("externalEnvIp") String hmsPort = context.config.otherConfigs.get(hivePrefix + "HmsPort") String catalog_name = "test_parquet_join_runtime_filter"