This is an automated email from the ASF dual-hosted git repository. leonard pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink-cdc.git
from 947dffca3 [FLINK-37122][build] Try to be compatible with old flink version 1.18.x new a1c9c19d7 [FLINK-36578][pipeline-connector/mysql] Introduce option to unify json type output between snapshot phase and binlog phase new e81df946b [minor][ci] Set proper timeout for compile_and_test step of CI job The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/workflows/flink_cdc_base.yml | 2 +- .../docs/connectors/flink-sources/mysql-cdc.md | 14 +- .../docs/connectors/pipeline-connectors/mysql.md | 12 + .../mysql/factory/MySqlDataSourceFactory.java | 6 +- .../mysql/source/MySqlDataSourceOptions.java | 8 + .../mysql/source/MySqlFullTypesITCase.java | 123 +++++++- .../mysql/source/MySqlMetadataAccessorITCase.java | 66 +++- .../src/test/resources/ddl/column_type_test.sql | 20 +- .../test/resources/ddl/column_type_test_mysql8.sql | 18 ++ .../deserialization/json/JsonStringFormatter.java | 337 +++++++++++++++++++++ .../flink/cdc/connectors/mysql/MySqlSource.java | 6 + .../mysql/source/MySqlSourceBuilder.java | 9 + .../mysql/source/config/MySqlSourceConfig.java | 5 +- .../source/config/MySqlSourceConfigFactory.java | 13 +- .../mysql/source/config/MySqlSourceOptions.java | 8 + .../connectors/mysql/table/MySqlTableSource.java | 9 +- .../mysql/table/MySqlTableSourceFactory.java | 5 +- .../mysql/table/MySqlTableSourceFactoryTest.java | 35 ++- .../src/test/resources/ddl/column_type_test.sql | 2 +- .../test/resources/ddl/column_type_test_mysql8.sql | 2 +- 20 files changed, 671 insertions(+), 29 deletions(-) create mode 100644 flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/main/java/com/github/shyiko/mysql/binlog/event/deserialization/json/JsonStringFormatter.java