We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Matter at hand: gh-ost's support for multiple charsets.
gh-ost
gh-ost works well out-of-the-box with utf8 and utf8mb4.
utf8
utf8mb4
However for other character sets it needs to be told, explicitly, how to convert strings. For example, the latin1 character set is supported, and is converted via golang's charmap.Windows1252, see: https://github.com/github/gh-ost/blob/master/go/sql/encoding.go#L20
latin1
charmap.Windows1252
If anyone is willing to assist in mapping other MySQL charsets to golang Encoders, we're very grateful. Please PR the https://github.com/github/gh-ost/blob/master/go/sql/encoding.go file with additional charsets.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Matter at hand:
gh-ost
's support for multiple charsets.gh-ost
works well out-of-the-box withutf8
andutf8mb4
.However for other character sets it needs to be told, explicitly, how to convert strings. For example, the
latin1
character set is supported, and is converted via golang'scharmap.Windows1252
, see: https://github.com/github/gh-ost/blob/master/go/sql/encoding.go#L20If anyone is willing to assist in mapping other MySQL charsets to golang Encoders, we're very grateful. Please PR the https://github.com/github/gh-ost/blob/master/go/sql/encoding.go file with additional charsets.
The text was updated successfully, but these errors were encountered: