120 lines
3.0 KiB
Go
120 lines
3.0 KiB
Go
// Copyright 2024 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 ddl
|
|
|
|
import (
|
|
"github.com/pingcap/tidb/pkg/meta/model"
|
|
"github.com/pingcap/tidb/pkg/parser/ast"
|
|
"github.com/pingcap/tidb/pkg/types"
|
|
)
|
|
|
|
// In BDR mode(primary role), we allow add a new column to table if it is nullable
|
|
// or not null with default value.
|
|
func deniedByBDRWhenAddColumn(options []*ast.ColumnOption) bool {
|
|
var (
|
|
nullable bool
|
|
notNull bool
|
|
defaultValue bool
|
|
comment int
|
|
generated int
|
|
)
|
|
for _, opt := range options {
|
|
switch opt.Tp {
|
|
case ast.ColumnOptionDefaultValue:
|
|
defaultValue = true
|
|
case ast.ColumnOptionComment:
|
|
comment = 1
|
|
case ast.ColumnOptionGenerated:
|
|
generated = 1
|
|
case ast.ColumnOptionNotNull:
|
|
notNull = true
|
|
case ast.ColumnOptionNull:
|
|
nullable = true
|
|
}
|
|
}
|
|
tpLen := len(options) - comment - generated
|
|
|
|
if tpLen == 0 || (tpLen == 1 && nullable) || (tpLen == 1 && !notNull && defaultValue) ||
|
|
(tpLen == 2 && notNull && defaultValue) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// In BDR mode(primary role), we allow add or update comment for column, change default
|
|
// value of one particular column. Other modify column operations are denied.
|
|
func deniedByBDRWhenModifyColumn(newFieldType, oldFieldType types.FieldType, options []*ast.ColumnOption) bool {
|
|
if !newFieldType.Equal(&oldFieldType) {
|
|
return true
|
|
}
|
|
var (
|
|
defaultValue bool
|
|
comment bool
|
|
)
|
|
for _, opt := range options {
|
|
if opt.Tp == ast.ColumnOptionDefaultValue {
|
|
defaultValue = true
|
|
}
|
|
if opt.Tp == ast.ColumnOptionComment {
|
|
comment = true
|
|
}
|
|
}
|
|
|
|
if len(options) == 1 && defaultValue {
|
|
return false
|
|
}
|
|
|
|
if len(options) == 2 && defaultValue && comment {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// DeniedByBDR checks whether the DDL is denied by BDR.
|
|
func DeniedByBDR(role ast.BDRRole, action model.ActionType, args model.JobArgs) (denied bool) {
|
|
ddlType, ok := model.ActionBDRMap[action]
|
|
switch role {
|
|
case ast.BDRRolePrimary:
|
|
if !ok {
|
|
return true
|
|
}
|
|
|
|
// Can't add unique index on primary role.
|
|
if args != nil && (action == model.ActionAddIndex || action == model.ActionAddPrimaryKey) {
|
|
if args.(*model.ModifyIndexArgs).IndexArgs[0].Unique {
|
|
return true
|
|
}
|
|
}
|
|
|
|
if ddlType == model.SafeDDL || ddlType == model.UnmanagementDDL {
|
|
return false
|
|
}
|
|
case ast.BDRRoleSecondary:
|
|
if !ok {
|
|
return true
|
|
}
|
|
if ddlType == model.UnmanagementDDL {
|
|
return false
|
|
}
|
|
default:
|
|
// if user do not set bdr role, we will not deny any ddl as `none`
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|