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
Note...
Older MySQL/MariaDB binlog doesn't contain information about field names.
MySQL 8.0+ and MariaDB 10.5+ have extended metadata which contain data like:
column names
column charset
signedness of number columns
enum/set values (those are transmitted as numbes in binary log)
primary key
...
Library parses data data to TableMapEventMetaData structure.
UpdateRowsEventData{tableId=119, includedColumnsBeforeUpdate={0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, includedColumns={0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, rows=[ {before=[xxx], after=[xxx]} ]}
The text was updated successfully, but these errors were encountered: