Skip to content

Commit

Permalink
Add blank line
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycs520 committed May 21, 2019
1 parent 52018b5 commit 62b0730
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ddl/column_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,7 @@ func (s *testColumnSuite) TestModifyColumn(c *C) {
{"varchar(10)", "varchar(8)", errUnsupportedModifyColumn.GenByArgs("length 8 is less than origin 10")},
{"varchar(10)", "varchar(11)", nil},
{"varchar(10) character set utf8 collate utf8_bin", "varchar(10) character set utf8", nil},

{"decimal(2,1)", "decimal(3,2)", errUnsupportedModifyColumn.Gen("unsupported modify decimal column precision")},
{"decimal(2,1)", "decimal(2,1)", nil},
}
Expand Down

0 comments on commit 62b0730

Please sign in to comment.