You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by sz...@apache.org on 2021/07/22 12:31:56 UTC

[hive] branch master updated (d5d0fb7 -> 25c07fd)

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

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


    from d5d0fb7  Disable flaky test
     add 25c07fd  HIVE-25360: Iceberg vectorized ORC reads don't support column reordering (Adam Szita, reviewed by Peter Vary)

No new revisions were added by this update.

Summary of changes:
 .../mr/hive/vector/HiveVectorizedReader.java       |   7 +
 .../iceberg/orc/ExpressionToOrcSearchArgument.java | 296 +++++++++++++++++++++
 .../apache/iceberg/orc/VectorizedReadUtils.java    |  92 +++++++
 .../TestHiveIcebergStorageHandlerWithEngine.java   | 118 +++++++-
 .../hadoop/hive/ql/io/orc/OrcInputFormat.java      |   9 +-
 .../hive/ql/io/orc/VectorizedOrcInputFormat.java   |   7 +-
 .../hadoop/hive/serde2/ColumnProjectionUtils.java  |   1 +
 7 files changed, 524 insertions(+), 6 deletions(-)
 create mode 100644 iceberg/iceberg-handler/src/main/java/org/apache/iceberg/orc/ExpressionToOrcSearchArgument.java
 create mode 100644 iceberg/iceberg-handler/src/main/java/org/apache/iceberg/orc/VectorizedReadUtils.java