Skip to content

Commit

Permalink
[Fix](regression) Fix flaky case in test_stream_load_2pc (#39257)
Browse files Browse the repository at this point in the history
  • Loading branch information
liaoxin01 authored Aug 15, 2024
1 parent dedf15c commit 6b04d34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ suite("test_stream_load_2pc", "p0") {
def expected = [1, 3, 3, 5, 21]
// we recreate table for each partition, then load data with stream load and check the result
for (i = 0; i < tables.size(); ++i) {
if (isCloudMode() && tables[i] == "stream_load_mow_tbl_basic") {
if (isCloudMode() && tables[i].equals("stream_load_mow_tbl_basic")) {
log.info("Skip stream load mow table in cloud mode")
continue;
}
Expand Down

0 comments on commit 6b04d34

Please sign in to comment.