Documentation ¶
Index ¶
- type CheckJob
- type RowData
- type RowDatas
- type TableDiff
- func (t *TableDiff) CheckTableData(ctx context.Context) (bool, error)
- func (t *TableDiff) CheckTableStruct(ctx context.Context) (bool, error)
- func (t *TableDiff) Equal(ctx context.Context, writeFixSQL func(string) error) (bool, bool, error)
- func (t *TableDiff) EqualTableData(ctx context.Context) (equal bool, err error)
- func (t *TableDiff) WriteSqls(ctx context.Context, writeFixSQL func(string) error)
- type TableInstance
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CheckJob ¶
CheckJob is the struct of job for check
func GenerateCheckJob ¶
func GenerateCheckJob(table *TableInstance, splitFields, limits string, chunkSize int, collation string, useTiDBStatsInfo bool) ([]*CheckJob, error)
GenerateCheckJob generates some CheckJobs.
type RowData ¶
type RowData struct { Data map[string]*dbutil.ColumnData Source string }
RowData is the struct of rows selected from mysql/tidb
type RowDatas ¶
type RowDatas struct { Rows []RowData OrderKeyCols []*model.ColumnInfo }
RowDatas is a heap of MergeItems.
func (*RowDatas) Pop ¶
func (r *RowDatas) Pop() interface{}
Pop implements heap.Interface's Pop function
type TableDiff ¶
type TableDiff struct { // source tables SourceTables []*TableInstance // target table TargetTable *TableInstance // columns be ignored IgnoreColumns []string // columns be removed RemoveColumns []string // field should be the primary key, unique key or field with index Fields string // select range, for example: "age > 10 AND age < 20" Range string // for example, the whole data is [1...100] // we can split these data to [1...10], [11...20], ..., [91...100] // the [1...10] is a chunk, and it's chunk size is 10 // size of the split chunk ChunkSize int // sampling check percent, for example 10 means only check 10% data Sample int // how many goroutines are created to check data CheckThreadCount int // set true if target-db and source-db all support tidb implicit column "_tidb_rowid" UseRowID bool // set false if want to comapre the data directly UseChecksum bool // collation config in mysql/tidb, should corresponding to charset. Collation string // ignore check table's struct IgnoreStructCheck bool // ignore check table's data IgnoreDataCheck bool // get tidb statistics information from which table instance. if is nil, will split chunk by random. TiDBStatsSource *TableInstance // contains filtered or unexported fields }
TableDiff saves config for diff table
func (*TableDiff) CheckTableData ¶
CheckTableData checks table's data
func (*TableDiff) CheckTableStruct ¶
CheckTableStruct checks table's struct
func (*TableDiff) EqualTableData ¶
EqualTableData checks data is equal or not.
Click to show internal directories.
Click to hide internal directories.