bakwc / mysql_ch_replicator

Tool for replication of MySQL databases to ClickHouse
MIT License
18 stars 6 forks source link

Fixed json parsing #15

Closed bakwc closed 3 weeks ago

bakwc commented 3 weeks ago

Json was wrongly parsed as "{\"b\": \"b\", \"c\": [3, 2, 1]}". Now it's parsed correctly as {"b": "b", "c": [3, 2, 1]} (before there were additional quotes).