You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for making a great open source project! I've encountered unsigned/signed issues when ingesting MySQL binlog. I'm wondering is there a special reason to ignore unsigned values of numeric types? I assume there's additional information of unsigned/signed in table map for sure. It would be great if you share some materials to implement blind spots for this issue.
It seems this following method is to map column type from the metadata.
ColumnType.byCode(typeCode)
The text was updated successfully, but these errors were encountered:
Hi @sungjuly. See #104 (comment) (in short, the information needed to understand whether column was signed/unsigned at the time event was generated is missing (in the binary log)).
Thanks for making a great open source project! I've encountered unsigned/signed issues when ingesting MySQL binlog. I'm wondering is there a special reason to ignore unsigned values of numeric types? I assume there's additional information of unsigned/signed in table map for sure. It would be great if you share some materials to implement blind spots for this issue.
The text was updated successfully, but these errors were encountered: