branch-2.1: [test](stable) fix some unstable hive and mc cases #48697 (#48770)

Cherry-picked from #48697

Co-authored-by: Mingyu Chen (Rayner) <morningman@163.com>
This commit is contained in:
github-actions[bot]
2025-03-06 20:25:01 +08:00
committed by GitHub
parent 7b2899a7ff
commit 661eba5c92
3 changed files with 5 additions and 13 deletions

View File

@ -1,15 +1,5 @@
-- This file is automatically generated. You should know what you did if you want to edit this
-- !hive_docker_01 --
eee fff
ccc ddd
aaa bbb
-- !sql_02 --
eee fff
ccc ddd
aaa bbb
-- !hive_docker_01 --
-- !sql_02 --
eee fff
ccc ddd
aaa bbb

View File

@ -48,7 +48,8 @@ suite("test_prepare_hive_data_in_case", "p0,external,hive,external_docker,extern
log.info(values2.toString())
assertEquals(values[0][0],values2[0][0])
qt_hive_docker_01 """select * from default.test_prepare_hive_data_in_case order by k1 desc ;"""
// Execute in Hive in unstable, remove it
// qt_hive_docker_01 """select * from default.test_prepare_hive_data_in_case order by k1 desc ;"""
qt_sql_02 """ select * from test_prepare_hive_data_in_case.`default`.test_prepare_hive_data_in_case order by k1 desc;"""

View File

@ -107,6 +107,7 @@ suite("test_max_compute_partition_prune", "p2,external,maxcompute,external_remot
for (String enable_profile : ["true","false"] ) {
sql """set enable_profile = ${enable_profile} """;
sql """set fetch_splits_max_wait_time_ms = 10000 """;
for (String num_partitions : ["1","10","100"] ) {
sql "set num_partitions_in_batch_mode = ${num_partitions} "
@ -291,4 +292,4 @@ suite("test_max_compute_partition_prune", "p2,external,maxcompute,external_remot
}
}
}
}
}