Skip to content

Commit

Permalink
Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Nov 5, 2024
1 parent df05f29 commit 5a495c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mysql/schema/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ func TestParseColumnDataType(t *testing.T) {
}
}
{
// tinyint(1) or boolean
// tinyint(1) should still be an integer
dataType, _, err := parseColumnDataType("tinyint(1)")
assert.NoError(t, err)
assert.Equal(t, Boolean, dataType)
assert.Equal(t, TinyInt, dataType)
}
{
// String
Expand Down

0 comments on commit 5a495c8

Please sign in to comment.