Skip to content

Commit

Permalink
Fix test_filter_dropped_indexes.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter committed Sep 30, 2024
1 parent eaae021 commit 1c9c87b
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,11 @@ suite("test_filter_dropped_indexes") {
// cache must be clear and reload.
assertTrue(helper.checkSelectTimesOf("SELECT * FROM ${tableName}", insert_num + 4, 60))

// no full sync triggered.
def last_job_progress = helper.get_job_progress(tableName)
assertTrue(last_job_progress.full_sync_start_at == first_job_progress.full_sync_start_at)
if (helper.has_feature("feature_schema_change_partial_sync")) {
// no full sync triggered.
def last_job_progress = helper.get_job_progress(tableName)
assertTrue(last_job_progress.full_sync_start_at == first_job_progress.full_sync_start_at)
}
}


Expand Down

0 comments on commit 1c9c87b

Please sign in to comment.