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

nagarwal pushed a change to branch hudi_test_suite_refactor
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git.


 discard 2ee3d28  more fixes 3
 discard 5e95adc  more fixes 2
 discard f31eb05  more fixes
    omit 652a0d6  more fixes
    omit d244c1b  Build fixes after rebase
    omit cf551bd  Fix Compilation Issues + Port Bug Fixes
    omit a189878  [HUDI-394] Provide a basic implementation of test suite
     add 19d29ac  [HUDI-741] Added checks to validate Hoodie's schema evolution.
     add acdc4a8  [HUDI-798] Migrate to Mockito Jupiter for JUnit 5 (#1521)
     add acb1ada  [HUDI-799] Use appropriate FS when loading configs (#1517)
     add 7552365  [MINOR] use Option and fix description in toString method 
(#1527)
     add 09fd6f6  [HUDI-800] Fix Metrics getReporter().close() throws NPE. 
(#1529)
     add 6d49f62  [HUDI-394] Provide a basic implementation of test suite

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   (2ee3d28)
            \
             N -- N -- N   refs/heads/hudi_test_suite_refactor (6d49f62)

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.

No new revisions were added by this update.

Summary of changes:
 hudi-cli/pom.xml                                   |   2 +-
 .../hudi/cli/commands/HoodieLogFileCommand.java    |   8 +-
 hudi-client/pom.xml                                |   2 +-
 .../org/apache/hudi/client/HoodieWriteClient.java  |  64 ++-
 .../org/apache/hudi/config/HoodieWriteConfig.java  |  12 +
 .../org/apache/hudi/io/HoodieAppendHandle.java     |   2 -
 .../java/org/apache/hudi/io/HoodieWriteHandle.java |   6 +-
 .../main/java/org/apache/hudi/metrics/Metrics.java |   6 +-
 .../hudi/table/action/commit/InsertBucket.java     |   4 +-
 .../hudi/table/action/rollback/RollbackHelper.java |  26 +-
 .../apache/hudi/client/TestHoodieClientBase.java   |  28 ++
 .../TestHoodieClientOnCopyOnWriteStorage.java      |   6 +-
 .../hudi/client/TestTableSchemaEvolution.java      | 487 +++++++++++++++++++++
 .../org/apache/hudi/client/TestWriteStatus.java    |  14 +-
 .../client/utils/TestParquetReaderIterator.java    |  19 +-
 .../hudi/common/HoodieTestDataGenerator.java       |  18 +-
 .../java/org/apache/hudi/index/TestHbaseIndex.java |  45 +-
 .../apache/hudi/table/TestHoodieRecordSizing.java  |   6 +-
 hudi-common/pom.xml                                |   2 +-
 .../java/org/apache/hudi/avro/HoodieAvroUtils.java |   8 +
 .../hudi/common/table/TableSchemaResolver.java     | 360 +++++++++++++++
 .../hudi/common/table/timeline/HoodieTimeline.java |   0
 .../view/TestPriorityBasedFileSystemView.java      | 124 +++---
 hudi-hadoop-mr/pom.xml                             |   2 +-
 .../realtime/TestHoodieRealtimeFileSplit.java      |  40 +-
 hudi-hive-sync/pom.xml                             |   2 +-
 .../java/org/apache/hudi/hive/HiveSyncTool.java    |   4 +-
 .../org/apache/hudi/hive/HoodieHiveClient.java     | 129 +-----
 .../util/{SchemaUtil.java => HiveSchemaUtil.java}  |  33 +-
 .../org/apache/hudi/hive/TestHiveSyncTool.java     |  18 +-
 hudi-spark/pom.xml                                 |   2 +-
 hudi-timeline-service/pom.xml                      |   2 +-
 hudi-utilities/pom.xml                             |   2 +-
 .../deltastreamer/HoodieDeltaStreamer.java         |   4 +-
 pom.xml                                            |   6 +-
 35 files changed, 1154 insertions(+), 339 deletions(-)
 create mode 100644 
hudi-client/src/test/java/org/apache/hudi/client/TestTableSchemaEvolution.java
 create mode 100644 
hudi-common/src/main/java/org/apache/hudi/common/table/TableSchemaResolver.java
 mode change 100755 => 100644 
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/HoodieTimeline.java
 rename hudi-hive-sync/src/main/java/org/apache/hudi/hive/util/{SchemaUtil.java 
=> HiveSchemaUtil.java} (93%)

Reply via email to