Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

executor: stop using the deprecated Filter field in BRIE statements #18172

Merged
merged 3 commits into from
Jun 29, 2020

Conversation

kennytm
Copy link
Contributor

@kennytm kennytm commented Jun 22, 2020

What problem does this PR solve?

Issue Number: close #18151

Problem Summary:

In pingcap/br#313, we have deprecated the fields Filter and CaseSensitive in the Config structure (they are not immediately removed due to cyclic dependency). Their usages are supposed to be removed in the when TiDB upgrades the BR dependency.

The Go language founders hate warnings, and thus the Go compiler will not warn about use of deprecated items. This has to be checked by third-party linters such as staticcheck. Unforuntately SA1019 is not enabled by default. Therefore, the lint is completely ignored in #17839. Because BRIE statement does not support mocktikv, we can't rely on unit tests either. This leads to #18151 slipping into the master branch.

What is changed and how it works?

What's Changed:

As a hot-fix, we removed all use of Filter and CaseSensitive fields by the TableFilter field.

How it Works:

Related changes

  • Need to cherry-pick to the release branch (4.0)

Check List

Tests

  • Manual test (add detailed scripts or steps below)
    • Execute BACKUP DATABASE test TO 'noop://' in both master and this PR.

Side effects

Release note

@kennytm kennytm requested a review from a team as a code owner June 22, 2020 10:07
@kennytm kennytm requested review from qw4990 and removed request for a team June 22, 2020 10:07
@kennytm
Copy link
Contributor Author

kennytm commented Jun 22, 2020

PTAL @wjhuang2016

@kennytm
Copy link
Contributor Author

kennytm commented Jun 22, 2020

Data race

https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tidb_ghpr_unit_test/detail/tidb_ghpr_unit_test/40791/pipeline

[2020-06-22T10:17:21.408Z] ==================

[2020-06-22T10:17:21.408Z] WARNING: DATA RACE

[2020-06-22T10:17:21.408Z] Read at 0x00c05fad80d0 by goroutine 163:

[2020-06-22T10:17:21.408Z]   runtime.chansend()

[2020-06-22T10:17:21.408Z]       /usr/local/go/src/runtime/chan.go:142 +0x0

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*innerMergeWorker).doMergeJoin.func1()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:535 +0x344

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*innerMergeWorker).doMergeJoin()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:591 +0x99f

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*innerMergeWorker).handleTask()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:500 +0xc33

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*innerMergeWorker).run()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:420 +0x28d

[2020-06-22T10:17:21.408Z] 

[2020-06-22T10:17:21.408Z] Previous write at 0x00c05fad80d0 by goroutine 792:

[2020-06-22T10:17:21.408Z]   runtime.closechan()

[2020-06-22T10:17:21.408Z]       /usr/local/go/src/runtime/chan.go:334 +0x0

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*IndexLookUpMergeJoin).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:715 +0xef

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*baseExecutor).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:171 +0xad

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*LimitExec).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:1058 +0x6c

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*baseExecutor).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:171 +0xad

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*ProjectionExec).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/projection.go:317 +0x24e

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*recordSet).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/adapter.go:151 +0x59

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/session.(*execStmtResult).Close()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1246 +0x7b

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/util/testkit.(*TestKit).MustExec()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:209 +0x426

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:47 +0x4a0

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:36 +0x2b1

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:35 +0x27a

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:34 +0x243

[2020-06-22T10:17:21.408Z]   github.com/pingcap/failpoint.parseTerm()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:148 +0x24d

[2020-06-22T10:17:21.408Z]   github.com/pingcap/failpoint.parse()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:125 +0xb4

[2020-06-22T10:17:21.408Z]   github.com/pingcap/failpoint.newTerms()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:97 +0x6a

[2020-06-22T10:17:21.408Z]   github.com/pingcap/failpoint.(*Failpoint).Enable()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoint.go:53 +0x53

[2020-06-22T10:17:21.408Z]   github.com/pingcap/failpoint.(*Failpoints).Enable()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoints.go:104 +0x160

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoints.go:224 +0x79

[2020-06-22T10:17:21.408Z]   runtime.call32()

[2020-06-22T10:17:21.408Z]       /usr/local/go/src/runtime/asm_amd64.s:539 +0x3a

[2020-06-22T10:17:21.408Z]   reflect.Value.Call()

[2020-06-22T10:17:21.408Z]       /usr/local/go/src/reflect/value.go:321 +0xd3

[2020-06-22T10:17:21.408Z]   github.com/pingcap/check.(*suiteRunner).forkTest.func1()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:850 +0x9aa

[2020-06-22T10:17:21.408Z]   github.com/pingcap/check.(*suiteRunner).forkCall.func1()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:739 +0x113

[2020-06-22T10:17:21.408Z] 

[2020-06-22T10:17:21.408Z] Goroutine 163 (running) created at:

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*IndexLookUpMergeJoin).startWorkers()

[2020-06-22T10:17:21.408Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:206 +0x638

[2020-06-22T10:17:21.408Z]   github.com/pingcap/tidb/executor.(*IndexLookUpMergeJoin).Open()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join.go:182 +0x3ba

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor.(*baseExecutor).Open()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:159 +0xa9

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor.(*LimitExec).Open()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:1046 +0x52

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor.(*baseExecutor).Open()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor.go:159 +0xa9

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor.(*ProjectionExec).Open()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/projection.go:84 +0x52

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor.(*ExecStmt).Exec()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/adapter.go:328 +0x299

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/session.runStmt()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1201 +0x2c1

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/session.(*session).ExecuteStmt()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1166 +0xa6f

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/util/testkit.(*TestKit).Exec()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:160 +0x2ee

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/util/testkit.(*TestKit).MustExec()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:206 +0x91

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:47 +0x4a0

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:36 +0x2b1

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:35 +0x27a

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/index_lookup_merge_join_test.go:34 +0x243

[2020-06-22T10:17:21.409Z]   github.com/pingcap/failpoint.parseTerm()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:148 +0x24d

[2020-06-22T10:17:21.409Z]   github.com/pingcap/failpoint.parse()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:125 +0xb4

[2020-06-22T10:17:21.409Z]   github.com/pingcap/failpoint.newTerms()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/terms.go:97 +0x6a

[2020-06-22T10:17:21.409Z]   github.com/pingcap/failpoint.(*Failpoint).Enable()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoint.go:53 +0x53

[2020-06-22T10:17:21.409Z]   github.com/pingcap/failpoint.(*Failpoints).Enable()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoints.go:104 +0x160

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.(*testSuite9).TestIssue18068()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/failpoint@v0.0.0-20200603062251-b230c36c413c/failpoints.go:224 +0x79

[2020-06-22T10:17:21.409Z]   runtime.call32()

[2020-06-22T10:17:21.409Z]       /usr/local/go/src/runtime/asm_amd64.s:539 +0x3a

[2020-06-22T10:17:21.409Z]   reflect.Value.Call()

[2020-06-22T10:17:21.409Z]       /usr/local/go/src/reflect/value.go:321 +0xd3

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).forkTest.func1()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:850 +0x9aa

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).forkCall.func1()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:739 +0x113

[2020-06-22T10:17:21.409Z] 

[2020-06-22T10:17:21.409Z] Goroutine 792 (running) created at:

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).forkCall()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:734 +0x4a3

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).forkTest()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:832 +0x1b9

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).doRun()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:666 +0x13a

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.(*suiteRunner).run()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/check.go:696 +0x13f

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.Run()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/run.go:150 +0x5a

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.RunAll()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/run.go:136 +0x906

[2020-06-22T10:17:21.409Z]   github.com/pingcap/check.TestingT()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/check@v0.0.0-20200212061837-5e12011dc712/run.go:99 +0x751

[2020-06-22T10:17:21.409Z]   github.com/pingcap/tidb/executor_test.TestT()

[2020-06-22T10:17:21.409Z]       /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/executor/executor_test.go:96 +0x263

[2020-06-22T10:17:21.409Z]   testing.tRunner()

[2020-06-22T10:17:21.409Z]       /usr/local/go/src/testing/testing.go:909 +0x199

@kennytm
Copy link
Contributor Author

kennytm commented Jun 22, 2020

/run-unit-test

@codecov
Copy link

codecov bot commented Jun 22, 2020

Codecov Report

Merging #18172 into master will not change coverage.
The diff coverage is n/a.

@@             Coverage Diff             @@
##             master     #18172   +/-   ##
===========================================
  Coverage   79.5462%   79.5462%           
===========================================
  Files           535        535           
  Lines        144712     144712           
===========================================
  Hits         115113     115113           
  Misses        20324      20324           
  Partials       9275       9275           

Copy link
Member

@wjhuang2016 wjhuang2016 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions github-actions bot added the sig/execution SIG execution label Jun 22, 2020
@kennytm
Copy link
Contributor Author

kennytm commented Jun 29, 2020

PTAL @bb7133

Copy link
Member

@bb7133 bb7133 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ti-srebot
Copy link
Contributor

@bb7133, Thanks for your review, however we are sorry that your vote won't be count. You are not a reviewer or committer or co-leader or leader for the related sigs:execution(slack).

@bb7133
Copy link
Member

bb7133 commented Jun 29, 2020

/merge

@ti-srebot
Copy link
Contributor

Sorry @bb7133, you don't have permission to trigger auto merge event on this branch. You are not a committer or co-leader or leader for the related sigs:execution(slack).

@bb7133 bb7133 added the status/can-merge Indicates a PR has been approved by a committer. label Jun 29, 2020
@ti-srebot
Copy link
Contributor

Sorry @bb7133, you don't have permission to trigger auto merge event on this branch. You are not a committer or co-leader or leader for the related sigs:execution(slack).

@qw4990 qw4990 added status/can-merge Indicates a PR has been approved by a committer. and removed status/can-merge Indicates a PR has been approved by a committer. labels Jun 29, 2020
@qw4990
Copy link
Contributor

qw4990 commented Jun 29, 2020

/merge

@ti-srebot
Copy link
Contributor

/run-all-tests

@ti-srebot
Copy link
Contributor

@kennytm merge failed.

@ti-srebot
Copy link
Contributor

/run-all-tests

@qw4990
Copy link
Contributor

qw4990 commented Jun 29, 2020

/run-integration-copr-test

ti-srebot pushed a commit to ti-srebot/tidb that referenced this pull request Jul 24, 2020
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
@ti-srebot
Copy link
Contributor

cherry pick to release-4.0 in PR #18764

kennytm added a commit to kennytm/tidb that referenced this pull request Jul 24, 2020
…ingcap#18172)

Co-authored-by: ti-srebot <66930949+ti-srebot@users.noreply.github.com>
ti-srebot added a commit that referenced this pull request Jul 24, 2020
…18172) (#18765)

Co-authored-by: ti-srebot <66930949+ti-srebot@users.noreply.github.com>

Co-authored-by: ti-srebot <66930949+ti-srebot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
sig/execution SIG execution status/can-merge Indicates a PR has been approved by a committer.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BACKUP and RESTORE commands broken in master
6 participants