You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2019/11/09 01:25:46 UTC

[incubator-iceberg] branch master updated (f1cba90 -> ad4cd25)

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

blue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git.


    from f1cba90  Fix reading Avro with arrays of structs with 2 fields (#618)
     add ad4cd25  Fix Parquet with special characters in field names (#601)

No new revisions were added by this update.

Summary of changes:
 .../main/java/org/apache/iceberg/avro/Avro.java    |  23 +++-
 .../org/apache/iceberg/avro/AvroSchemaUtil.java    |   7 ++
 .../iceberg/avro/AvroSchemaWithTypeVisitor.java    | 135 +++++++++++++++++++++
 .../apache/iceberg/avro/BuildAvroProjection.java   |   4 +-
 .../org/apache/iceberg/data/avro/DataReader.java   |  42 +++----
 .../apache/iceberg/data/avro/IcebergDecoder.java   |   4 +-
 .../apache/iceberg/data/TestReadProjection.java    |  26 ++++
 .../apache/iceberg/parquet/TypeToMessageType.java  |  12 +-
 .../iceberg/spark/data/TestParquetAvroReader.java  |   3 +-
 .../iceberg/spark/data/TestParquetAvroWriter.java  |   3 +-
 .../iceberg/spark/data/TestSparkParquetWriter.java |   3 +-
 11 files changed, 228 insertions(+), 34 deletions(-)
 create mode 100644 core/src/main/java/org/apache/iceberg/avro/AvroSchemaWithTypeVisitor.java