Skip to content

Commit

Permalink
mysql converts text to blob when character set is binary
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Jan 13, 2025
1 parent 739e8cc commit 933bd2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/e2e/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func SetupMySQL(t *testing.T, suffix string) (*MySqlSource, error) {
}

if _, err := connector.Execute(
context.Background(), fmt.Sprintf("CREATE DATABASE \"e2e_test_%s\"", suffix),
context.Background(), fmt.Sprintf("CREATE DATABASE \"e2e_test_%s\" character set utf8mb4", suffix),
); err != nil {
connector.Close()
return nil, err
Expand Down

0 comments on commit 933bd2c

Please sign in to comment.