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

vinish pushed a change to branch 590-CatalogSync
in repository https://gitbox.apache.org/repos/asf/incubator-xtable.git


    omit 1c07c07b [590] Add RunCatalogSync utility for synchronizing tables 
across catalogs
    omit 115abc5a [590] Add interface for CatalogSyncClient and CatalogSync
     add f6767883 Fix commit log parsing of Delta tables with delete vector
     add f76e3112 [590] Add interface for CatalogSyncClient and CatalogSync
     add f9327f26 Fix compilation errors
     add 15a54e6e Use getStorageLocation in interface
     new ea325d75 [590] Add RunCatalogSync utility for synchronizing tables 
across catalogs
     new a7230143 Address comments

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   (1c07c07b)
            \
             N -- N -- N   refs/heads/590-CatalogSync (a7230143)

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 2 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:
 .../apache/xtable/conversion/ConversionConfig.java |   6 +-
 .../org/apache/xtable/conversion/TargetTable.java  |   4 -
 .../org/apache/xtable/spi/sync/CatalogSync.java    |   2 +-
 .../apache/xtable/spi/sync/CatalogSyncClient.java  |   2 +-
 .../apache/xtable/spi/sync/TestCatalogSync.java    |   6 +-
 xtable-core/pom.xml                                |  20 +++
 .../xtable/conversion/ConversionController.java    |   2 +-
 .../apache/xtable/delta/DeltaActionsConverter.java |  21 +++
 .../apache/xtable/delta/DeltaConversionSource.java |  49 ++++-
 .../apache/xtable/delta/DeltaStatsExtractor.java   |  49 ++++-
 .../catalog/TestCatalogConversionFactory.java      |  53 +-----
 .../conversion/TestConversionController.java       |   3 +-
 .../xtable/delta/ITDeltaDeleteVectorConvert.java   | 199 +++++++++++++++++++++
 .../xtable/delta/TestDeltaActionsConverter.java    |  67 +++++++
 .../xtable/delta/TestDeltaStatsExtractor.java      |   7 +
 .../org/apache/xtable/testutil/ITTestUtils.java    |  59 ++++++
 xtable-utilities/pom.xml                           |   9 +
 .../apache/xtable/utilities/RunCatalogSync.java    |  69 +++++--
 .../xtable/utilities/TestRunCatalogSync.java       |  61 -------
 .../src/test/resources/catalogConfig.yaml          |   8 +-
 20 files changed, 543 insertions(+), 153 deletions(-)
 create mode 100644 
xtable-core/src/test/java/org/apache/xtable/delta/ITDeltaDeleteVectorConvert.java
 create mode 100644 
xtable-core/src/test/java/org/apache/xtable/delta/TestDeltaActionsConverter.java

Reply via email to