Skip to content

Commit

Permalink
[MINOR] Fix flaky test in ITTestHoodieDataSource (apache#7134)
Browse files Browse the repository at this point in the history
  • Loading branch information
trushev authored and Alexey Kudinkin committed Dec 14, 2022
1 parent 924e150 commit ac2d7d3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -400,7 +400,8 @@ void testStreamReadMorTableWithCompactionPlan() throws Exception {
.end();
streamTableEnv.executeSql(hoodieTableDDL);

streamTableEnv.executeSql("insert into t1 select * from source");
String insertInto = "insert into t1 select * from source";
execInsertSql(streamTableEnv, insertInto);

List<Row> result = execSelectSql(streamTableEnv, "select * from t1", 10);
final String expected = "["
Expand Down

0 comments on commit ac2d7d3

Please sign in to comment.