Skip to content

Commit

Permalink
move attribute to infoschema/context
Browse files Browse the repository at this point in the history
  • Loading branch information
GMHDBJD committed Sep 11, 2024
1 parent b273bf2 commit a5bf276
Show file tree
Hide file tree
Showing 28 changed files with 124 additions and 102 deletions.
1 change: 1 addition & 0 deletions br/pkg/task/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ go_library(
"//pkg/ddl",
"//pkg/domain",
"//pkg/infoschema",
"//pkg/infoschema/context",
"//pkg/kv",
"//pkg/meta/model",
"//pkg/parser/model",
Expand Down
4 changes: 2 additions & 2 deletions br/pkg/task/restore_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/pingcap/tidb/br/pkg/summary"
"github.com/pingcap/tidb/br/pkg/utils"
tidbconfig "github.com/pingcap/tidb/pkg/config"
"github.com/pingcap/tidb/pkg/infoschema"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/kv"
pd "github.com/tikv/pd/client"
"go.uber.org/zap"
Expand Down Expand Up @@ -181,7 +181,7 @@ func resetTiFlashReplicas(ctx context.Context, g glue.Glue, storage kv.Storage,

expectTiFlashStoreCount := uint64(0)
needTiFlash := false
tableInfoRes := info.ListTablesWithSpecialAttribute(infoschema.TiFlashAttribute)
tableInfoRes := info.ListTablesWithSpecialAttribute(infoschemacontext.TiFlashAttribute)
for _, s := range tableInfoRes {
for _, t := range s.TableInfos {
if t.TiFlashReplica != nil {
Expand Down
1 change: 1 addition & 0 deletions pkg/ddl/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ go_library(
"//pkg/expression/context",
"//pkg/expression/contextstatic",
"//pkg/infoschema",
"//pkg/infoschema/context",
"//pkg/kv",
"//pkg/lightning/backend",
"//pkg/lightning/backend/external",
Expand Down
3 changes: 2 additions & 1 deletion pkg/ddl/ddl_tiflash_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import (
ddlutil "github.com/pingcap/tidb/pkg/ddl/util"
"github.com/pingcap/tidb/pkg/domain/infosync"
"github.com/pingcap/tidb/pkg/infoschema"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/meta/model"
"github.com/pingcap/tidb/pkg/sessionctx"
"github.com/pingcap/tidb/pkg/table"
Expand Down Expand Up @@ -451,7 +452,7 @@ func (d *ddl) refreshTiFlashTicker(ctx sessionctx.Context, pollTiFlashContext *T
var tableList = make([]TiFlashReplicaStatus, 0)

// Collect TiFlash Replica info, for every table.
ch := schema.ListTablesWithSpecialAttribute(infoschema.TiFlashAttribute)
ch := schema.ListTablesWithSpecialAttribute(infoschemacontext.TiFlashAttribute)
for _, v := range ch {
for _, tblInfo := range v.TableInfos {
LoadTiFlashReplicaInfo(tblInfo, &tableList)
Expand Down
3 changes: 2 additions & 1 deletion pkg/ddl/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import (
"github.com/pingcap/tidb/pkg/errctx"
"github.com/pingcap/tidb/pkg/expression"
"github.com/pingcap/tidb/pkg/infoschema"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/kv"
"github.com/pingcap/tidb/pkg/meta"
"github.com/pingcap/tidb/pkg/meta/autoid"
Expand Down Expand Up @@ -413,7 +414,7 @@ func (e *executor) getPendingTiFlashTableCount(originVersion int64, pendingCount
return originVersion, pendingCount
}
cnt := uint32(0)
dbs := is.ListTablesWithSpecialAttribute(infoschema.TiFlashAttribute)
dbs := is.ListTablesWithSpecialAttribute(infoschemacontext.TiFlashAttribute)
for _, db := range dbs {
if util.IsMemOrSysDB(db.DBName.L) {
continue
Expand Down
3 changes: 2 additions & 1 deletion pkg/ddl/placement_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/pingcap/tidb/pkg/ddl/placement"
"github.com/pingcap/tidb/pkg/domain/infosync"
"github.com/pingcap/tidb/pkg/infoschema"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/meta"
"github.com/pingcap/tidb/pkg/meta/model"
"github.com/pingcap/tidb/pkg/parser/ast"
Expand Down Expand Up @@ -370,7 +371,7 @@ func CheckPlacementPolicyNotInUseFromInfoSchema(is infoschema.InfoSchema, policy
}
}

schemaTables := is.ListTablesWithSpecialAttribute(infoschema.AllPlacementPolicyAttribute)
schemaTables := is.ListTablesWithSpecialAttribute(infoschemacontext.AllPlacementPolicyAttribute)
for _, schemaTable := range schemaTables {
for _, tblInfo := range schemaTable.TableInfos {
if err := checkPlacementPolicyNotUsedByTable(tblInfo, policy); err != nil {
Expand Down
3 changes: 2 additions & 1 deletion pkg/executor/infoschema_reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import (
"github.com/pingcap/tidb/pkg/executor/internal/pdhelper"
"github.com/pingcap/tidb/pkg/expression"
"github.com/pingcap/tidb/pkg/infoschema"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/keyspace"
"github.com/pingcap/tidb/pkg/kv"
"github.com/pingcap/tidb/pkg/meta/autoid"
Expand Down Expand Up @@ -2657,7 +2658,7 @@ func (e *memtableRetriever) dataForTableTiFlashReplica(_ context.Context, sctx s
rows [][]types.Datum
tiFlashStores map[int64]pd.StoreInfo
)
rs := e.is.ListTablesWithSpecialAttribute(infoschema.TiFlashAttribute)
rs := e.is.ListTablesWithSpecialAttribute(infoschemacontext.TiFlashAttribute)
for _, schema := range rs {
for _, tbl := range schema.TableInfos {
if checker != nil && !checker.RequestVerification(sctx.GetSessionVars().ActiveRoles, schema.DBName.L, tbl.Name.L, "", mysql.AllPrivMask) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/executor/join/join_row_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ func TestBitMaskInUint32(t *testing.T) {

func TestUintptrCanHoldPointer(t *testing.T) {
require.Equal(t, true, sizeOfUintptr >= sizeOfUnsafePointer)
}
}
3 changes: 2 additions & 1 deletion pkg/infoschema/builder_misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"fmt"

"github.com/pingcap/errors"
infoschemacontext "github.com/pingcap/tidb/pkg/infoschema/context"
"github.com/pingcap/tidb/pkg/meta"
"github.com/pingcap/tidb/pkg/meta/model"
)
Expand Down Expand Up @@ -115,7 +116,7 @@ func (b *Builder) initMisc(dbInfos []*model.DBInfo, policies []*model.PolicyInfo

// Maintain foreign key reference information.
if b.enableV2 {
rs := b.ListTablesWithSpecialAttribute(ForeignKeysAttribute)
rs := b.ListTablesWithSpecialAttribute(infoschemacontext.ForeignKeysAttribute)
for _, db := range rs {
for _, tbl := range db.TableInfos {
info.addReferredForeignKeys(db.DBName, tbl)
Expand Down
64 changes: 64 additions & 0 deletions pkg/infoschema/context/infoschema.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,70 @@ import (
// SpecialAttributeFilter is used to filter tables with special attributes.
type SpecialAttributeFilter func(*model.TableInfo) bool

// TTLAttribute is the TTL attribute filter used by ListTablesWithSpecialAttribute.
var TTLAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.State == model.StatePublic && t.TTLInfo != nil
}

// TiFlashAttribute is the TiFlashReplica attribute filter used by ListTablesWithSpecialAttribute.
var TiFlashAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.TiFlashReplica != nil
}

// PlacementPolicyAttribute is the Placement Policy attribute filter used by ListTablesWithSpecialAttribute.
var PlacementPolicyAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
if t.PlacementPolicyRef != nil {
return true
}
if parInfo := t.GetPartitionInfo(); parInfo != nil {
for _, def := range parInfo.Definitions {
if def.PlacementPolicyRef != nil {
return true
}
}
}
return false
}

// AllPlacementPolicyAttribute is the Placement Policy attribute filter used by ListTablesWithSpecialAttribute.
// Different from PlacementPolicyAttribute, Partition.Enable flag will be ignored.
var AllPlacementPolicyAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
if t.PlacementPolicyRef != nil {
return true
}
if t.Partition != nil {
for _, def := range t.Partition.Definitions {
if def.PlacementPolicyRef != nil {
return true
}
}
}
return false
}

// TableLockAttribute is the Table Lock attribute filter used by ListTablesWithSpecialAttribute.
var TableLockAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.Lock != nil
}

// ForeignKeysAttribute is the ForeignKeys attribute filter used by ListTablesWithSpecialAttribute.
var ForeignKeysAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
return len(t.ForeignKeys) > 0
}

// PartitionAttribute is the Partition attribute filter used by ListTablesWithSpecialAttribute.
var PartitionAttribute SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.GetPartitionInfo() != nil
}

// HasSpecialAttributes checks if a table has any special attributes.
func HasSpecialAttributes(t *model.TableInfo) bool {
return TTLAttribute(t) || TiFlashAttribute(t) || PlacementPolicyAttribute(t) || PartitionAttribute(t) || TableLockAttribute(t) || ForeignKeysAttribute(t)
}

// AllSpecialAttribute marks a model.TableInfo with any special attributes.
var AllSpecialAttribute SpecialAttributeFilter = HasSpecialAttributes

// TableInfoResult is used to store the result of ListTablesWithSpecialAttribute.
type TableInfoResult struct {
DBName pmodel.CIStr
Expand Down
69 changes: 3 additions & 66 deletions pkg/infoschema/infoschema_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func (isd *Data) add(item tableItem, tbl table.Table) {
isd.pid2tid.Set(partitionItem{def.ID, item.schemaVersion, tbl.Meta().ID, false})
}
}
if hasSpecialAttributes(ti) {
if infoschemacontext.HasSpecialAttributes(ti) {
isd.tableInfoResident.Set(tableInfoItem{
dbName: item.dbName,
tableID: item.tableID,
Expand Down Expand Up @@ -1379,7 +1379,7 @@ func (b *bundleInfoBuilder) updateInfoSchemaBundlesV2(is *infoschemaV2) {

// do full update bundles
is.ruleBundleMap = make(map[int64]*placement.Bundle)
tmp := is.ListTablesWithSpecialAttribute(PlacementPolicyAttribute)
tmp := is.ListTablesWithSpecialAttribute(infoschemacontext.PlacementPolicyAttribute)
for _, v := range tmp {
for _, tbl := range v.TableInfos {
b.updateTableBundles(is, tbl.ID)
Expand All @@ -1392,7 +1392,7 @@ func (b *bundleInfoBuilder) completeUpdateTablesV2(is *infoschemaV2) {
return
}

dbs := is.ListTablesWithSpecialAttribute(AllSpecialAttribute)
dbs := is.ListTablesWithSpecialAttribute(infoschemacontext.AllSpecialAttribute)
for _, db := range dbs {
for _, tbl := range db.TableInfos {
tblInfo := tbl
Expand All @@ -1413,69 +1413,6 @@ func (b *bundleInfoBuilder) completeUpdateTablesV2(is *infoschemaV2) {
}
}

// TTLAttribute is the TTL attribute filter used by ListTablesWithSpecialAttribute.
var TTLAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.State == model.StatePublic && t.TTLInfo != nil
}

// TiFlashAttribute is the TiFlashReplica attribute filter used by ListTablesWithSpecialAttribute.
var TiFlashAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.TiFlashReplica != nil
}

// PlacementPolicyAttribute is the Placement Policy attribute filter used by ListTablesWithSpecialAttribute.
var PlacementPolicyAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
if t.PlacementPolicyRef != nil {
return true
}
if parInfo := t.GetPartitionInfo(); parInfo != nil {
for _, def := range parInfo.Definitions {
if def.PlacementPolicyRef != nil {
return true
}
}
}
return false
}

// AllPlacementPolicyAttribute is the Placement Policy attribute filter used by ListTablesWithSpecialAttribute.
// Different from PlacementPolicyAttribute, Partition.Enable flag will be ignored.
var AllPlacementPolicyAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
if t.PlacementPolicyRef != nil {
return true
}
if t.Partition != nil {
for _, def := range t.Partition.Definitions {
if def.PlacementPolicyRef != nil {
return true
}
}
}
return false
}

// TableLockAttribute is the Table Lock attribute filter used by ListTablesWithSpecialAttribute.
var TableLockAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.Lock != nil
}

// ForeignKeysAttribute is the ForeignKeys attribute filter used by ListTablesWithSpecialAttribute.
var ForeignKeysAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
return len(t.ForeignKeys) > 0
}

// PartitionAttribute is the Partition attribute filter used by ListTablesWithSpecialAttribute.
var PartitionAttribute infoschemacontext.SpecialAttributeFilter = func(t *model.TableInfo) bool {
return t.GetPartitionInfo() != nil
}

func hasSpecialAttributes(t *model.TableInfo) bool {
return TTLAttribute(t) || TiFlashAttribute(t) || PlacementPolicyAttribute(t) || PartitionAttribute(t) || TableLockAttribute(t) || ForeignKeysAttribute(t)
}

// AllSpecialAttribute marks a model.TableInfo with any special attributes.
var AllSpecialAttribute infoschemacontext.SpecialAttributeFilter = hasSpecialAttributes

func (is *infoschemaV2) ListTablesWithSpecialAttribute(filter infoschemacontext.SpecialAttributeFilter) []infoschemacontext.TableInfoResult {
ret := make([]infoschemacontext.TableInfoResult, 0, 10)
var currDB string
Expand Down
24 changes: 12 additions & 12 deletions pkg/infoschema/infoschema_v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -525,44 +525,44 @@ func TestSpecialAttributeCorrectnessInSchemaChange(t *testing.T) {
DDLState: model.StatePublic,
}
// add partition
tblInfo1 := updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddTablePartition, 3, PartitionAttribute, true)
tblInfo1 := updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddTablePartition, 3, infoschemacontext.PartitionAttribute, true)
require.Equal(t, tblInfo.Partition, tblInfo1.Partition)
// drop partition
tblInfo.Partition.Definitions = tblInfo.Partition.Definitions[:1]
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropTablePartition, 4, PartitionAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropTablePartition, 4, infoschemacontext.PartitionAttribute, true)
require.Equal(t, tblInfo.Partition, tblInfo1.Partition)

// test placement policy correctness in schema change
tblInfo.PlacementPolicyRef = &model.PolicyRefInfo{
ID: 1,
Name: pmodel.NewCIStr("p3"),
}
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAlterTablePlacement, 5, PlacementPolicyAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAlterTablePlacement, 5, infoschemacontext.PlacementPolicyAttribute, true)
require.Equal(t, tblInfo.PlacementPolicyRef, tblInfo1.PlacementPolicyRef)
tblInfo.PlacementPolicyRef = nil
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAlterTablePlacement, 6, PlacementPolicyAttribute, false)
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAlterTablePlacement, 6, infoschemacontext.PlacementPolicyAttribute, false)

// test tiflash replica correctness in schema change
tblInfo.TiFlashReplica = &model.TiFlashReplicaInfo{
Count: 1,
Available: true,
LocationLabels: []string{"zone"},
}
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionSetTiFlashReplica, 7, TiFlashAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionSetTiFlashReplica, 7, infoschemacontext.TiFlashAttribute, true)
require.Equal(t, tblInfo.TiFlashReplica, tblInfo1.TiFlashReplica)
tblInfo.TiFlashReplica = nil
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionSetTiFlashReplica, 8, TiFlashAttribute, false)
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionSetTiFlashReplica, 8, infoschemacontext.TiFlashAttribute, false)

// test table lock correctness in schema change
tblInfo.Lock = &model.TableLockInfo{
Tp: pmodel.TableLockRead,
State: model.TableLockStatePublic,
TS: 1,
}
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionLockTable, 9, TableLockAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionLockTable, 9, infoschemacontext.TableLockAttribute, true)
require.Equal(t, tblInfo.Lock, tblInfo1.Lock)
tblInfo.Lock = nil
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionUnlockTable, 10, TableLockAttribute, false)
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionUnlockTable, 10, infoschemacontext.TableLockAttribute, false)

// test foreign key correctness in schema change
tblInfo.ForeignKeys = []*model.FKInfo{{
Expand All @@ -574,10 +574,10 @@ func TestSpecialAttributeCorrectnessInSchemaChange(t *testing.T) {
Cols: []pmodel.CIStr{pmodel.NewCIStr("t_a")},
State: model.StateWriteOnly,
}}
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddForeignKey, 11, ForeignKeysAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddForeignKey, 11, infoschemacontext.ForeignKeysAttribute, true)
require.Equal(t, tblInfo.ForeignKeys, tblInfo1.ForeignKeys)
tblInfo.ForeignKeys = nil
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropForeignKey, 12, ForeignKeysAttribute, false)
updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropForeignKey, 12, infoschemacontext.ForeignKeysAttribute, false)
}

func TestDataStructFieldsCorrectnessInSchemaChange(t *testing.T) {
Expand Down Expand Up @@ -636,7 +636,7 @@ func TestDataStructFieldsCorrectnessInSchemaChange(t *testing.T) {
Enable: true,
DDLState: model.StatePublic,
}
tblInfo1 := updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddTablePartition, 3, PartitionAttribute, true)
tblInfo1 := updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionAddTablePartition, 3, infoschemacontext.PartitionAttribute, true)
require.Equal(t, tblInfo.Partition, tblInfo1.Partition)
require.Equal(t, v2.Data.pid2tid.Len(), 2)
tblInfoItem, ok := v2.Data.pid2tid.Get(partitionItem{partitionID: 2, schemaVersion: 3})
Expand All @@ -645,7 +645,7 @@ func TestDataStructFieldsCorrectnessInSchemaChange(t *testing.T) {

// verify partition related fields drop partition
tblInfo.Partition.Definitions = tblInfo.Partition.Definitions[:1]
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropTablePartition, 4, PartitionAttribute, true)
tblInfo1 = updateTableSpecialAttribute(t, dbInfo, tblInfo, builder, r, model.ActionDropTablePartition, 4, infoschemacontext.PartitionAttribute, true)
require.Equal(t, tblInfo.Partition, tblInfo1.Partition)
require.Equal(t, v2.Data.pid2tid.Len(), 4)
tblInfoItem, ok = v2.Data.pid2tid.Get(partitionItem{partitionID: 1, schemaVersion: 4})
Expand Down
1 change: 1 addition & 0 deletions pkg/infoschema/test/infoschemav2test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ go_test(
"//pkg/domain",
"//pkg/domain/infosync",
"//pkg/infoschema",
"//pkg/infoschema/context",
"//pkg/parser/auth",
"//pkg/parser/model",
"//pkg/sessionctx/variable",
Expand Down
Loading

0 comments on commit a5bf276

Please sign in to comment.