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 fengjian committed Apr 5, 2023
1 parent 2b1754f commit f9d3b47
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -436,7 +436,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 f9d3b47

Please sign in to comment.