@@ -1189,7 +1189,7 @@ void testStreamingReadPartitionPushDownWithInExpr() throws Exception {
11891189 .stream ()
11901190 .filter (s -> s .contains ("2025" ) || s .contains ("2026" ))
11911191 .collect (Collectors .toList ());
1192- waitUtilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "2027" ));
1192+ waitUntilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "2027" ));
11931193
11941194 String plan =
11951195 tEnv .explainSql ("select * from partitioned_table_in where c in ('2025','2026')" );
@@ -1247,7 +1247,7 @@ void testStreamingReadWithCombinedFiltersAndInExpr() throws Exception {
12471247 }
12481248
12491249 writeRows (conn , tablePath , rows , false );
1250- waitUtilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "2027" ));
1250+ waitUntilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "2027" ));
12511251
12521252 String plan =
12531253 tEnv .explainSql (
@@ -1291,7 +1291,7 @@ void testStreamingReadPartitionPushDownWithLikeExpr() throws Exception {
12911291 allData .stream ()
12921292 .filter (s -> s .contains ("2025" ) || s .contains ("2026" ))
12931293 .collect (Collectors .toList ());
1294- waitUtilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "3026" ));
1294+ waitUntilAllBucketFinishSnapshot (admin , tablePath , Arrays .asList ("2025" , "2026" , "3026" ));
12951295
12961296 String plan = tEnv .explainSql ("select * from partitioned_table_like where c like '202%'" );
12971297 assertThat (plan )
@@ -1350,7 +1350,7 @@ void testStreamingReadPartitionComplexPushDown() throws Exception {
13501350 allData .stream ()
13511351 .filter (s -> s .contains ("v3" ) && !s .contains ("2025, 2" ))
13521352 .collect (Collectors .toList ());
1353- waitUtilAllBucketFinishSnapshot (
1353+ waitUntilAllBucketFinishSnapshot (
13541354 admin , tablePath , Arrays .asList ("2025$1" , "2025$2" , "2026$1" ));
13551355
13561356 String plan =
0 commit comments