Files
tidb/executor/bind.go
2019-11-22 17:09:37 +08:00

113 lines
3.2 KiB
Go

// 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,
// 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/parser/ast"
"github.com/pingcap/tidb/bindinfo"
"github.com/pingcap/tidb/domain"
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
isGlobal bool
bindAst ast.StmtNode
}
// 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.OpFlushBindings:
return e.flushBindings()
case plannercore.OpCaptureBindings:
e.captureBindings()
case plannercore.OpEvolveBindings:
return e.evolveBindings()
default:
return errors.Errorf("unsupported SQL bind operation: %v", e.sqlBindOp)
}
return nil
}
func (e *SQLBindExec) dropSQLBind() error {
record := &bindinfo.BindRecord{
OriginalSQL: e.normdOrigSQL,
Db: e.ctx.GetSessionVars().CurrentDB,
}
if e.bindSQL != "" {
bindInfo := bindinfo.Binding{
BindSQL: e.bindSQL,
Charset: e.charset,
Collation: e.collation,
}
record.Bindings = append(record.Bindings, bindInfo)
}
if !e.isGlobal {
handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle)
return handle.DropBindRecord(e.ctx, GetInfoSchema(e.ctx), record)
}
return domain.GetDomain(e.ctx).BindHandle().DropBindRecord(e.ctx, GetInfoSchema(e.ctx), record)
}
func (e *SQLBindExec) createSQLBind() error {
bindInfo := bindinfo.Binding{
BindSQL: e.bindSQL,
Charset: e.charset,
Collation: e.collation,
Status: bindinfo.Using,
}
record := &bindinfo.BindRecord{
OriginalSQL: e.normdOrigSQL,
Db: e.ctx.GetSessionVars().CurrentDB,
Bindings: []bindinfo.Binding{bindInfo},
}
if !e.isGlobal {
handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle)
return handle.AddBindRecord(e.ctx, GetInfoSchema(e.ctx), record)
}
return domain.GetDomain(e.ctx).BindHandle().AddBindRecord(e.ctx, GetInfoSchema(e.ctx), record)
}
func (e *SQLBindExec) flushBindings() error {
handle := domain.GetDomain(e.ctx).BindHandle()
handle.DropInvalidBindRecord()
handle.SaveEvolveTasksToStore()
return handle.Update(false)
}
func (e *SQLBindExec) captureBindings() {
domain.GetDomain(e.ctx).BindHandle().CaptureBaselines()
}
func (e *SQLBindExec) evolveBindings() error {
return domain.GetDomain(e.ctx).BindHandle().HandleEvolvePlanTask(e.ctx)
}