apache / doris-kafka-connector

Kafka Connector for Apache Doris
https://doris.apache.org
Apache License 2.0
10 stars 9 forks source link

[feature] Support importing MySQL geographic data types and PostgreSQL array data types #25

Closed vinlee19 closed 3 months ago

vinlee19 commented 3 months ago
  1. The Geometry data type in MySQL will be converted to a JSON-formatted string. For example, the data ST_GeomFromText('POINT(3 1)') will be converted to a JSON string:

    {"coordinates":[3,1],"type":"Point","srid":0}
  2. Support importing array data types in PostgreSQL.

vinlee19 commented 3 months ago

Can we add a unit test case? done