Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
asddongmen committed Nov 1, 2023
1 parent fd92104 commit 034b44e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.
12 changes: 3 additions & 9 deletions cdc/entry/mounter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1518,13 +1518,11 @@ func TestDecodeEventIgnoreRow(t *testing.T) {

func TestBuildTableInfo(t *testing.T) {
cases := []struct {
caseNumber int
origin string
recovered string
recoveredWithNilCol string
}{
{
1,
"CREATE TABLE t1 (c INT PRIMARY KEY)",
"CREATE TABLE `BuildTiDBTableInfo` (\n" +
" `c` int(0) NOT NULL,\n" +
Expand All @@ -1536,7 +1534,6 @@ func TestBuildTableInfo(t *testing.T) {
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin",
},
{
2,
"CREATE TABLE t1 (" +
" c INT UNSIGNED," +
" c2 VARCHAR(10) NOT NULL," +
Expand All @@ -1558,7 +1555,6 @@ func TestBuildTableInfo(t *testing.T) {
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin",
},
{
3,
"CREATE TABLE t1 (" +
" c INT UNSIGNED," +
" gen INT AS (c+1) VIRTUAL," +
Expand All @@ -1584,7 +1580,6 @@ func TestBuildTableInfo(t *testing.T) {
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin",
},
{
4,
"CREATE TABLE `t1` (" +
" `a` int(11) NOT NULL," +
" `b` int(11) DEFAULT NULL," +
Expand All @@ -1606,8 +1601,7 @@ func TestBuildTableInfo(t *testing.T) {
" PRIMARY KEY (`a`(0)) /*T![clustered_index] CLUSTERED */\n" +
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin",
},
{
5,
{ // This case is to check the primary key is correctly identified by BuildTiDBTableInfo
"CREATE TABLE your_table (" +
" id INT NOT NULL," +
" name VARCHAR(50) NOT NULL," +
Expand Down Expand Up @@ -1641,7 +1635,7 @@ func TestBuildTableInfo(t *testing.T) {
},
}
p := parser.New()
for _, c := range cases {
for i, c := range cases {
stmt, err := p.ParseOneStmt(c.origin, "", "")
require.NoError(t, err)
originTI, err := ddl.BuildTableInfoFromAST(stmt.(*ast.CreateTableStmt))
Expand All @@ -1654,7 +1648,7 @@ func TestBuildTableInfo(t *testing.T) {
require.NotNil(t, handle.UniqueNotNullIdx)
require.Equal(t, c.recovered, showCreateTable(t, recoveredTI))
// make sure BuildTiDBTableInfo indentify the correct primary key
if c.caseNumber == 5 {
if i == 5 {
inexes := recoveredTI.Indices
primaryCount := 0
for i := range inexes {
Expand Down
26 changes: 9 additions & 17 deletions cdc/model/sink.go
Original file line number Diff line number Diff line change
Expand Up @@ -604,23 +604,26 @@ func BuildTiDBTableInfo(columns []*Column, indexColumns [][]int) *model.TableInf
continue
}
if firstCol.Flag.IsPrimaryKey() {
// If all columns in the index are primary key, then the index is primary key.
if CheckIfIndexesPrimaryKey(colOffsets, columns) {
indexInfo.Primary = true
}
indexInfo.Unique = true
}
if firstCol.Flag.IsUniqueKey() {
indexInfo.Unique = true
}

isPrimary := true
for _, offset := range colOffsets {
col := ret.Columns[offset]
col := columns[offset]
// When only all columns in the index are primary key, then the index is primary key.
if col == nil || !col.Flag.IsPrimaryKey() {
isPrimary = false
}

tiCol := ret.Columns[offset]
indexCol := &model.IndexColumn{}
indexCol.Name = col.Name
indexCol.Name = tiCol.Name
indexCol.Offset = offset
indexInfo.Columns = append(indexInfo.Columns, indexCol)
indexInfo.Primary = isPrimary
}

// TODO: revert the "all column set index related flag" to "only the
Expand All @@ -631,17 +634,6 @@ func BuildTiDBTableInfo(columns []*Column, indexColumns [][]int) *model.TableInf
return ret
}

// CheckIfIndexesPrimaryKey checks if all columns in a index is primary key
func CheckIfIndexesPrimaryKey(columnOffsets []int, columns []*Column) bool {
for _, offset := range columnOffsets {
column := columns[offset]
if column == nil || !column.Flag.IsPrimaryKey() {
return false
}
}
return true
}

// ColumnValueString returns the string representation of the column value
func ColumnValueString(c interface{}) string {
var data string
Expand Down

0 comments on commit 034b44e

Please sign in to comment.