forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbind.go
165 lines (150 loc) · 4.86 KB
/
bind.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Copyright 2019 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package executor
import (
"context"
"github.com/pingcap/errors"
"github.com/pingcap/tidb/bindinfo"
"github.com/pingcap/tidb/domain"
"github.com/pingcap/tidb/parser/ast"
plannercore "github.com/pingcap/tidb/planner/core"
"github.com/pingcap/tidb/util/chunk"
)
// SQLBindExec represents a bind executor.
type SQLBindExec struct {
baseExecutor
sqlBindOp plannercore.SQLBindOpType
normdOrigSQL string
bindSQL string
charset string
collation string
db string
isGlobal bool
bindAst ast.StmtNode
newStatus string
source string // by manual or from history, only in create stmt
sqlDigest string
planDigest string
}
// Next implements the Executor Next interface.
func (e *SQLBindExec) Next(ctx context.Context, req *chunk.Chunk) error {
req.Reset()
switch e.sqlBindOp {
case plannercore.OpSQLBindCreate:
return e.createSQLBind()
case plannercore.OpSQLBindDrop:
return e.dropSQLBind()
case plannercore.OpSQLBindDropByDigest:
return e.dropSQLBindByDigest()
case plannercore.OpFlushBindings:
return e.flushBindings()
case plannercore.OpCaptureBindings:
e.captureBindings()
case plannercore.OpEvolveBindings:
return e.evolveBindings()
case plannercore.OpReloadBindings:
return e.reloadBindings()
case plannercore.OpSetBindingStatus:
return e.setBindingStatus()
default:
return errors.Errorf("unsupported SQL bind operation: %v", e.sqlBindOp)
}
return nil
}
func (e *SQLBindExec) dropSQLBind() error {
var bindInfo *bindinfo.Binding
if e.bindSQL != "" {
bindInfo = &bindinfo.Binding{
BindSQL: e.bindSQL,
Charset: e.charset,
Collation: e.collation,
}
}
if !e.isGlobal {
handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle)
err := handle.DropBindRecord(e.normdOrigSQL, e.db, bindInfo)
return err
}
affectedRows, err := domain.GetDomain(e.ctx).BindHandle().DropBindRecord(e.normdOrigSQL, e.db, bindInfo)
e.ctx.GetSessionVars().StmtCtx.AddAffectedRows(affectedRows)
return err
}
func (e *SQLBindExec) dropSQLBindByDigest() error {
if e.sqlDigest == "" {
return errors.New("sql digest is empty")
}
if !e.isGlobal {
handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle)
err := handle.DropBindRecordByDigest(e.sqlDigest)
return err
}
affectedRows, err := domain.GetDomain(e.ctx).BindHandle().DropBindRecordByDigest(e.sqlDigest)
e.ctx.GetSessionVars().StmtCtx.AddAffectedRows(affectedRows)
return err
}
func (e *SQLBindExec) setBindingStatus() error {
var bindInfo *bindinfo.Binding
if e.bindSQL != "" {
bindInfo = &bindinfo.Binding{
BindSQL: e.bindSQL,
Charset: e.charset,
Collation: e.collation,
}
}
ok, err := domain.GetDomain(e.ctx).BindHandle().SetBindRecordStatus(e.normdOrigSQL, bindInfo, e.newStatus)
if err == nil && !ok {
warningMess := errors.New("There are no bindings can be set the status. Please check the SQL text")
e.ctx.GetSessionVars().StmtCtx.AppendWarning(warningMess)
}
return err
}
func (e *SQLBindExec) createSQLBind() error {
// For audit log, SQLBindExec execute "explain" statement internally, save and recover stmtctx
// is necessary to avoid 'create binding' been recorded as 'explain'.
saveStmtCtx := e.ctx.GetSessionVars().StmtCtx
defer func() {
e.ctx.GetSessionVars().StmtCtx = saveStmtCtx
}()
bindInfo := bindinfo.Binding{
BindSQL: e.bindSQL,
Charset: e.charset,
Collation: e.collation,
Status: bindinfo.Enabled,
Source: e.source,
SQLDigest: e.sqlDigest,
PlanDigest: e.planDigest,
}
record := &bindinfo.BindRecord{
OriginalSQL: e.normdOrigSQL,
Db: e.db,
Bindings: []bindinfo.Binding{bindInfo},
}
if !e.isGlobal {
handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle)
return handle.CreateBindRecord(e.ctx, record)
}
return domain.GetDomain(e.ctx).BindHandle().CreateBindRecord(e.ctx, record)
}
func (e *SQLBindExec) flushBindings() error {
return domain.GetDomain(e.ctx).BindHandle().FlushBindings()
}
func (e *SQLBindExec) captureBindings() {
domain.GetDomain(e.ctx).BindHandle().CaptureBaselines()
}
func (e *SQLBindExec) evolveBindings() error {
return domain.GetDomain(e.ctx).BindHandle().HandleEvolvePlanTask(e.ctx, true)
}
func (e *SQLBindExec) reloadBindings() error {
return domain.GetDomain(e.ctx).BindHandle().ReloadBindings()
}