Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix panic inside schema tracker #17659

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/vt/vtgate/schema/tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ func (t *Tracker) updatedTableSchema(th *discovery.TabletHealth) bool {

func (t *Tracker) updateTables(keyspace string, res map[string]string) {
for tableName, tableDef := range res {
stmt, err := t.parser.Parse(tableDef)
stmt, err := t.parser.ParseStrictDDL(tableDef)
if err != nil {
log.Warningf("error parsing table definition for %s: %v", tableName, err)
continue
Expand Down Expand Up @@ -535,7 +535,7 @@ func (vm *viewMap) set(ks, tbl, sql string) {
m = make(map[tableNameStr]sqlparser.TableStatement)
vm.m[ks] = m
}
stmt, err := vm.parser.Parse(sql)
stmt, err := vm.parser.ParseStrictDDL(sql)
if err != nil {
log.Warningf("ignoring view '%s', parsing error in view definition: '%s'", tbl, sql)
return
Expand Down
21 changes: 21 additions & 0 deletions go/vt/vtgate/schema/tracker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ func TestTableTracking(t *testing.T) {
tables(
tbl("t4", "create table t4(name varchar(50) primary key)"),
),
tables(
tbl("t5", "create table t5(name varchar(50) primary key with broken syntax)"),
),
}

testcases := []testCases{{
Expand Down Expand Up @@ -234,6 +237,15 @@ func TestTableTracking(t *testing.T) {
"t3": {{Name: sqlparser.NewIdentifierCI("id"), Type: querypb.Type_DATETIME, CollationName: "binary", Size: 0, Nullable: true}},
"t4": {{Name: sqlparser.NewIdentifierCI("name"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: true}},
},
}, {
testName: "new broken table",
updTbl: []string{"t5"},
expTbl: map[string][]vindexes.Column{
"t1": {{Name: sqlparser.NewIdentifierCI("id"), Type: querypb.Type_INT64, CollationName: "binary", Nullable: true}, {Name: sqlparser.NewIdentifierCI("name"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: true}, {Name: sqlparser.NewIdentifierCI("email"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: false, Default: &sqlparser.Literal{Val: "a@b.com"}}},
"T1": {{Name: sqlparser.NewIdentifierCI("id"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: true}, {Name: sqlparser.NewIdentifierCI("name"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: true}},
"t3": {{Name: sqlparser.NewIdentifierCI("id"), Type: querypb.Type_DATETIME, CollationName: "binary", Size: 0, Nullable: true}},
"t4": {{Name: sqlparser.NewIdentifierCI("name"), Type: querypb.Type_VARCHAR, Size: 50, Nullable: true}},
},
}}

testTracker(t, false, schemaResponse, testcases)
Expand All @@ -253,6 +265,7 @@ func TestViewsTracking(t *testing.T) {
tbl("t3", "create view t3 as select 1 from tbl3"),
),
tables(tbl("t4", "create view t4 as select 1 from tbl4")),
tables(tbl("t4", "create view t5 as select 1 from tbl4 with broken syntax")),
}

testcases := []testCases{{
Expand Down Expand Up @@ -281,6 +294,14 @@ func TestViewsTracking(t *testing.T) {
"V1": "select 1, 2 from tbl2",
"t3": "select 1 from tbl3",
"t4": "select 1 from tbl4"},
}, {
testName: "new broken t5",
updView: []string{"t5"},
expView: map[string]string{
"t1": "select 1 from tbl1",
"V1": "select 1, 2 from tbl2",
"t3": "select 1 from tbl3",
"t4": "select 1 from tbl4"},
}}

testTracker(t, false, schemaDefResult, testcases)
Expand Down
2 changes: 1 addition & 1 deletion go/vt/wrangler/vdiff.go
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ func findPKs(env *vtenv.Environment, table *tabletmanagerdatapb.TableDefinition,
// column in the table definition leveraging MySQL's collation inheritance
// rules.
func getColumnCollations(venv *vtenv.Environment, table *tabletmanagerdatapb.TableDefinition) (map[string]collations.ID, map[string]*evalengine.EnumSetValues, error) {
createstmt, err := venv.Parser().Parse(table.Schema)
createstmt, err := venv.Parser().ParseStrictDDL(table.Schema)
if err != nil {
return nil, nil, err
}
Expand Down
7 changes: 7 additions & 0 deletions go/vt/wrangler/vdiff_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1311,6 +1311,13 @@ func TestGetColumnCollations(t *testing.T) {
"size": {"'small'", "'medium'", "'large'"},
},
},
{
name: "invalid schema",
table: &tabletmanagerdatapb.TableDefinition{
Schema: "create table t1 (c1 varchar(10), size set('small', 'medium', 'large'), primary key(c1) with syntax error)",
},
wantErr: true,
},
}
env := vtenv.NewTestEnv()
for _, tt := range tests {
Expand Down
Loading