krowinski / php-mysql-replication

Pure PHP Implementation of MySQL replication protocol. This allow you to receive event like insert, update, delete with their data and raw SQL queries.
MIT License
323 stars 97 forks source link

Fix JsonBinaryDecoder when there is NULL in data or if there is long … #96

Closed matyx closed 9 months ago

matyx commented 2 years ago

…array with small numbers

We have found some bugs in JsonBinaryDecoderService. Specially when there is 'null' in JSON field and when there is array with many small numbers. We backported these fixes from golang implementation (links in the code).