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

[DNM]: 2.1.17 hotfix #14497

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion executor/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ func (b *executorBuilder) getStartTS() (uint64, error) {
if err != nil {
return 0, errors.Trace(err)
}
if startTS == 0 && txn.Valid() {
if startTS == 0 {
startTS = txn.StartTS()
}
b.startTS = startTS
Expand Down
2 changes: 1 addition & 1 deletion executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2345,7 +2345,7 @@ func (s *testSuite) TestSelectForUpdate(c *C) {
tk.MustExec("drop table if exists t, t1")

txn, err := tk.Se.Txn(true)
c.Assert(err, IsNil)
c.Assert(kv.ErrInvalidTxn.Equal(err), IsTrue)
c.Assert(txn.Valid(), IsFalse)
tk.MustExec("create table t (c1 int, c2 int, c3 int)")
tk.MustExec("insert t values (11, 2, 3)")
Expand Down
2 changes: 1 addition & 1 deletion executor/point_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (e *PointGetExecutor) encodeIndexKey() (_ []byte, err error) {
}

func (e *PointGetExecutor) get(key kv.Key) (val []byte, err error) {
txn, err := e.ctx.Txn(true)
txn, err := e.ctx.Txn(false)
if err != nil {
return nil, errors.Trace(err)
}
Expand Down
2 changes: 1 addition & 1 deletion executor/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (e *SimpleExec) executeRollback(s *ast.RollbackStmt) error {
sessVars := e.ctx.GetSessionVars()
logutil.Logger(context.Background()).Debug("execute rollback statement", zap.Uint64("conn", sessVars.ConnectionID))
sessVars.SetStatusFlag(mysql.ServerStatusInTrans, false)
txn, err := e.ctx.Txn(true)
txn, err := e.ctx.Txn(false)
if err != nil {
return errors.Trace(err)
}
Expand Down
3 changes: 3 additions & 0 deletions session/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -1028,6 +1028,9 @@ func (s *session) DropPreparedStmt(stmtID uint32) error {
}

func (s *session) Txn(active bool) (kv.Transaction, error) {
if !s.txn.validOrPending() && active {
return &s.txn, kv.ErrInvalidTxn
}
if s.txn.pending() && active {
// Transaction is lazy initialized.
// PrepareTxnCtx is called to get a tso future, makes s.txn a pending txn,
Expand Down
8 changes: 5 additions & 3 deletions session/session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func (s *testSessionSuite) TestRowLock(c *C) {

tk.MustExec("drop table if exists t")
txn, err := tk.Se.Txn(true)
c.Assert(err, IsNil)
c.Assert(kv.ErrInvalidTxn.Equal(err), IsTrue)
c.Assert(txn.Valid(), IsFalse)
tk.MustExec("create table t (c1 int, c2 int, c3 int)")
tk.MustExec("insert t values (11, 2, 3)")
Expand Down Expand Up @@ -330,7 +330,9 @@ func (s *testSessionSuite) TestTxnLazyInitialize(c *C) {
tk.MustExec("create table t (id int)")

tk.MustExec("set @@autocommit = 0")
txn, err := tk.Se.Txn(false)
txn, err := tk.Se.Txn(true)
c.Assert(kv.ErrInvalidTxn.Equal(err), IsTrue)
txn, err = tk.Se.Txn(false)
c.Assert(err, IsNil)
c.Assert(txn.Valid(), IsFalse)
tk.MustQuery("select @@tidb_current_ts").Check(testkit.Rows("0"))
Expand Down Expand Up @@ -623,7 +625,7 @@ func (s *testSessionSuite) TestRetryPreparedStmt(c *C) {

tk.MustExec("drop table if exists t")
txn, err := tk.Se.Txn(true)
c.Assert(err, IsNil)
c.Assert(kv.ErrInvalidTxn.Equal(err), IsTrue)
c.Assert(txn.Valid(), IsFalse)
tk.MustExec("create table t (c1 int, c2 int, c3 int)")
tk.MustExec("insert t values (11, 2, 3)")
Expand Down
25 changes: 8 additions & 17 deletions store/tikv/gcworker/gc_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ type GCWorker struct {
lastFinish time.Time
cancel context.CancelFunc
done chan error

session session.Session
}

// NewGCWorker creates a GCWorker instance.
Expand Down Expand Up @@ -136,8 +134,6 @@ func (w *GCWorker) start(ctx context.Context, wg *sync.WaitGroup) {
logutil.Logger(ctx).Info("[gc worker] start",
zap.String("uuid", w.uuid))

w.session = createSession(w.store)

w.tick(ctx) // Immediately tick once to initialize configs.
wg.Done()

Expand Down Expand Up @@ -864,7 +860,6 @@ func (w *GCWorker) checkLeader() (bool, error) {
if err != nil {
return false, errors.Trace(err)
}
w.session = se
leader, err := w.loadValueFromSysTable(gcLeaderUUIDKey)
if err != nil {
_, err1 := se.Execute(ctx, "ROLLBACK")
Expand Down Expand Up @@ -895,6 +890,8 @@ func (w *GCWorker) checkLeader() (bool, error) {
}
lease, err := w.loadTime(gcLeaderLeaseKey)
if err != nil {
_, err1 := se.Execute(ctx, "ROLLBACK")
terror.Log(errors.Trace(err1))
return false, errors.Trace(err)
}
if lease == nil || lease.Before(time.Now()) {
Expand Down Expand Up @@ -998,8 +995,10 @@ func (w *GCWorker) loadDurationWithDefault(key string, def time.Duration) (*time

func (w *GCWorker) loadValueFromSysTable(key string) (string, error) {
ctx := context.Background()
se := createSession(w.store)
defer se.Close()
stmt := fmt.Sprintf(`SELECT HIGH_PRIORITY (variable_value) FROM mysql.tidb WHERE variable_name='%s' FOR UPDATE`, key)
rs, err := w.session.Execute(ctx, stmt)
rs, err := se.Execute(ctx, stmt)
if len(rs) > 0 {
defer terror.Call(rs[0].Close)
}
Expand Down Expand Up @@ -1028,10 +1027,9 @@ func (w *GCWorker) saveValueToSysTable(key, value string) error {
ON DUPLICATE KEY
UPDATE variable_value = '%[2]s', comment = '%[3]s'`,
key, value, gcVariableComments[key])
if w.session == nil {
return errors.New("[saveValueToSysTable session is nil]")
}
_, err := w.session.Execute(context.Background(), stmt)
se := createSession(w.store)
defer se.Close()
_, err := se.Execute(context.Background(), stmt)
logutil.Logger(context.Background()).Debug("[gc worker] save kv",
zap.String("key", key),
zap.String("value", value),
Expand Down Expand Up @@ -1084,13 +1082,6 @@ func NewMockGCWorker(store tikv.Storage) (*MockGCWorker, error) {
lastFinish: time.Now(),
done: make(chan error),
}
worker.session, err = session.CreateSession(worker.store)
if err != nil {
logutil.Logger(context.Background()).Error("initialize MockGCWorker session fail", zap.Error(err))
return nil, errors.Trace(err)
}
privilege.BindPrivilegeManager(worker.session, nil)
worker.session.GetSessionVars().InRestrictedSQL = true
return &MockGCWorker{worker: worker}, nil
}

Expand Down