You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by co...@apache.org on 2022/09/05 06:15:32 UTC

[hudi] branch master updated (24dd00724c -> edbd7fd6cc)

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

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


    from 24dd00724c [HUDI-4739] Wrong value returned when key's length equals 1 (#6539)
     add edbd7fd6cc [HUDI-4528] Add diff tool to compare commit metadata (#6485)

No new revisions were added by this update.

Summary of changes:
 .../apache/hudi/cli/HoodieTableHeaderFields.java   |  32 +++
 .../apache/hudi/cli/commands/CommitsCommand.java   | 229 ++++++++-------------
 .../hudi/cli/commands/CompactionCommand.java       |  52 ++---
 .../org/apache/hudi/cli/commands/DiffCommand.java  | 184 +++++++++++++++++
 .../cli/commands/HoodieSyncValidateCommand.java    |   5 +-
 .../apache/hudi/cli/commands/RollbacksCommand.java |  34 +++
 .../java/org/apache/hudi/cli/utils/CommitUtil.java |   4 +-
 .../hudi/cli/commands/TestCommitsCommand.java      |  87 +++++---
 .../hudi/cli/commands/TestCompactionCommand.java   |   2 +-
 .../apache/hudi/cli/commands/TestDiffCommand.java  | 147 +++++++++++++
 .../HoodieTestCommitMetadataGenerator.java         |  32 ++-
 .../hudi/common/table/HoodieTableMetaClient.java   |   7 +-
 .../table/timeline/HoodieArchivedTimeline.java     |   2 +-
 .../table/timeline/HoodieDefaultTimeline.java      |  15 ++
 .../hudi/common/table/timeline/TimelineUtils.java  |  10 +-
 15 files changed, 630 insertions(+), 212 deletions(-)
 create mode 100644 hudi-cli/src/main/java/org/apache/hudi/cli/commands/DiffCommand.java
 create mode 100644 hudi-cli/src/test/java/org/apache/hudi/cli/commands/TestDiffCommand.java