You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ja...@apache.org on 2020/05/06 03:40:59 UTC

[flink] branch master updated (04ab8d2 -> b1e436a)

This is an automated email from the ASF dual-hosted git repository.

jark pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from 04ab8d2  [FLINK-17332][k8s] Fix restart policy not equals to Never for native task manager pods
     add b1e436a  [FLINK-17462][format][csv] Support CSV serialization and deseriazation schema for RowData type

No new revisions were added by this update.

Summary of changes:
 flink-formats/flink-csv/pom.xml                    |   8 +
 .../csv/CsvRowDataDeserializationSchema.java}      | 378 +++++++++--------
 .../formats/csv/CsvRowDataSerializationSchema.java | 454 +++++++++++++++++++++
 .../flink/formats/csv/CsvRowSchemaConverter.java   |  93 ++++-
 .../formats/csv/CsvRowDataSerDeSchemaTest.java     | 355 ++++++++++++++++
 5 files changed, 1115 insertions(+), 173 deletions(-)
 copy flink-formats/{flink-json/src/main/java/org/apache/flink/formats/json/JsonRowDataDeserializationSchema.java => flink-csv/src/main/java/org/apache/flink/formats/csv/CsvRowDataDeserializationSchema.java} (56%)
 create mode 100644 flink-formats/flink-csv/src/main/java/org/apache/flink/formats/csv/CsvRowDataSerializationSchema.java
 create mode 100644 flink-formats/flink-csv/src/test/java/org/apache/flink/formats/csv/CsvRowDataSerDeSchemaTest.java