Skip to content

Commit

Permalink
drop tables
Browse files Browse the repository at this point in the history
  • Loading branch information
RidRisR committed Aug 18, 2024
1 parent 1710c13 commit aa4c008
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/realtikvtest/brietest/brie_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,9 @@ func TestExistedTables(t *testing.T) {
t.Fatal("Restore operation exceeded")
case <-done:
}

for i := 0; i < 10; i++ {
tableName := fmt.Sprintf("foo%d", i)
tk.MustExec(fmt.Sprintf("drop table %s;", tableName))
}
}

0 comments on commit aa4c008

Please sign in to comment.