Replies: 2 comments
|
Here's the fork: main...Auspice-Capital:MySqlCdc:main |
0 replies
|
Hi, thanks for your contribution! I merged your fork and uploaded libs to the nuget. Sorry for very late response and slow support, there are reasons for that |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi, thanks for making this project!
I'm trying to use this library with
UUIDvalues stored inBINARY(16)columns in MySql 8.0.35. The bytes are being parsed here as UTF8, but I believe it's failing because UUID uses utf8mb3, which is different fromSystem.Text.Encoding.UTF8. For example, a UUID may include bytes like0x9cand0x9d, both of which get parsed to0xfffd:Have I misunderstood something?
I'm currently planning to make a fork that uses only byte arrays instead of
Stringfor string-typed columnsAll reactions