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
We got NullPointerExceptiom when parsing the binlog file.
Caused by: java.lang.NullPointerException
at com.github.shyiko.mysql.binlog.event.deserialization.TableMapEventDataDeserializer.readMetadata(TableMapEventDataDeserializer.java:81)
at com.github.shyiko.mysql.binlog.event.deserialization.TableMapEventDataDeserializer.deserialize(TableMapEventDataDeserializer.java:42)
at com.github.shyiko.mysql.binlog.event.deserialization.TableMapEventDataDeserializer.deserialize(TableMapEventDataDeserializer.java:27)
at com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer.deserializeEventData(EventDeserializer.java:303)
at com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer.deserializeTableMapEventData(EventDeserializer.java:281)
at com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer.nextEvent(EventDeserializer.java:228)
at io.debezium.connector.mysql.MySqlStreamingChangeEventSource$1.nextEvent(MySqlStreamingChangeEventSource.java:259)
at com.github.shyiko.mysql.binlog.BinaryLogClient.listenForEventPackets(BinaryLogClient.java:952)
... 3 more
I want to know how to store this metadata in an int array when parsing in TableMapEventDataDeserializer. The MYSQL_TYPE_TYPED_ARRAY will have two parts metadata: the type of the array and the metadata of the type.
The text was updated successfully, but these errors were encountered:
We got NullPointerExceptiom when parsing the binlog file.
After searching, I find it is a new type MYSQL_TYPE_TYPED_ARRAY(https://dev.mysql.com/doc/dev/mysql-server/latest/classbinary__log_1_1Table__map__event.html), and it has been changed in mysql/mysql-server@9082b6a.
I want to know how to store this metadata in an int array when parsing in
TableMapEventDataDeserializer
. The MYSQL_TYPE_TYPED_ARRAY will have two parts metadata: the type of the array and the metadata of the type.The text was updated successfully, but these errors were encountered: