Skip to content

Commit

Permalink
fix unfound merge conflict
Browse files Browse the repository at this point in the history
Signed-off-by: lance6716 <lance6716@gmail.com>
  • Loading branch information
lance6716 committed Mar 17, 2023
1 parent 05a97b2 commit 76d23f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions executor/asyncloaddata/operate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (s *mockGCSSuite) TestOperateRunningJob() {
s.enableFailpoint("github.com/pingcap/tidb/executor/AfterStartJob", `sleep(1000)`)
s.enableFailpoint("github.com/pingcap/tidb/executor/AfterCommitOneTask", `sleep(1000)`)
sql := fmt.Sprintf(`LOAD DATA INFILE 'gs://test-operate/t.tsv?endpoint=%s'
INTO TABLE test_operate.t;`, gcsEndpoint)
INTO TABLE test_operate.t WITH batch_size = 1;`, gcsEndpoint)

// DROP can happen anytime
user := &auth.UserIdentity{
Expand All @@ -58,7 +58,6 @@ func (s *mockGCSSuite) TestOperateRunningJob() {
s.tk.Session().GetSessionVars().User = user
tk2 := testkit.NewTestKit(s.T(), s.store)
tk2.Session().GetSessionVars().User = user
tk2.MustExec("SET SESSION tidb_dml_batch_size = 1;")
var wg sync.WaitGroup
wg.Add(1)
go func() {
Expand Down

0 comments on commit 76d23f7

Please sign in to comment.