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

github-actions[bot] pushed a change to branch bot/trino-pin
in repository https://gitbox.apache.org/repos/asf/hudi.git


 discard c12cf0c95ce3 chore(trino): advance trino master pin to fc0834cad5c4
     add 5e58dd363aed feat(flink): support vector columns in Lance writer 
(#19831)
     add b290301a35d1 refactor(config): deprecate 
hoodie.parquet.outputtimestamptype; no-op since 1.1.0 (#19815)
     add 9b5742cc961e refactor(schema): dissolve AvroSchemaUtils, dedupe compat 
(#19810)
     add e29d4d6a8289 chore(deps): bump org.apache.thrift:libthrift (#19824)
     add aeaa7751e15b fix(hive-sync): close the SessionState HiveQL sync starts 
(#19812)
     new 3857418f69b2 chore(trino): advance trino master pin to 83129f579dd4

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c12cf0c95ce3)
            \
             N -- N -- N   refs/heads/bot/trino-pin (3857418f69b2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .../org/apache/hudi/config/HoodieWriteConfig.java  |   7 +
 .../hudi/table/TestHoodieTableSchemaEvolution.java |  11 +
 .../row/HoodieRowDataFileWriterFactory.java        |   5 +-
 .../io/storage/row/HoodieRowDataLanceWriter.java   |  22 +-
 .../row/lance/HoodieFlinkLanceArrowUtils.java      |  53 ++-
 .../io/storage/row/lance/LanceRowDataWriter.java   |  86 +++-
 .../row/TestHoodieFlinkLanceArrowUtils.java        |  66 ++-
 .../storage/row/TestHoodieRowDataLanceWriter.java  | 103 +++++
 .../io/storage/row/TestLanceRowDataWriter.java     | 108 ++++-
 .../storage/row/HoodieRowParquetWriteSupport.java  |   1 -
 .../apache/hudi/common/avro/AvroSchemaUtils.java   | 146 -------
 .../apache/hudi/common/avro/HoodieAvroUtils.java   |  88 +++-
 .../hudi/common/config/HoodieStorageConfig.java    |  12 +-
 .../apache/hudi/common/schema/HoodieSchema.java    |  28 +-
 .../common/schema/HoodieSchemaCompatibility.java   |  48 ++-
 .../schema/HoodieSchemaCompatibilityChecker.java   |  22 +-
 .../common/schema/HoodieSchemaTypePromotion.java   |  13 +-
 .../hudi/common/schema/HoodieSchemaUtils.java      |  91 +++--
 .../hudi/metadata/HoodieTableMetadataUtil.java     |   3 +
 .../hudi/common/avro/TestAvroSchemaUtils.java      |  70 ----
 .../hudi/common/avro/TestHoodieAvroUtils.java      |  74 +++-
 .../hudi/common/schema/TestHoodieSchema.java       |  21 +-
 .../schema/TestHoodieSchemaCompatibility.java      | 153 +++++++
 .../schema/TestHoodieSchemaTypePromotion.java      |   9 +
 .../hudi/common/schema/TestHoodieSchemaUtils.java  | 174 ++++++++
 .../avro/TestHoodieAvroWriteSupportShredding.java  |   2 +-
 .../hudi/metadata/TestHoodieMetadataPayload.java   |  23 +-
 .../row/TestHoodieInternalRowParquetWriter.java    |  41 ++
 .../apache/hudi/hive/ddl/HiveQueryDDLExecutor.java | 133 +++++--
 .../hive/ddl/TestHiveQueryDDLExecutorSession.java  | 442 +++++++++++++++++++++
 packaging/hudi-integ-test-bundle/pom.xml           |   2 +-
 pom.xml                                            |   2 +-
 32 files changed, 1678 insertions(+), 381 deletions(-)
 create mode 100644 
hudi-client/hudi-flink-client/src/test/java/org/apache/hudi/io/storage/row/TestHoodieRowDataLanceWriter.java
 delete mode 100644 
hudi-common/src/main/java/org/apache/hudi/common/avro/AvroSchemaUtils.java
 delete mode 100644 
hudi-common/src/test/java/org/apache/hudi/common/avro/TestAvroSchemaUtils.java
 create mode 100644 
hudi-sync/hudi-hive-sync/src/test/java/org/apache/hudi/hive/ddl/TestHiveQueryDDLExecutorSession.java

Reply via email to