Skip to content

Commit

Permalink
Revert "[Kernel] [CC Refactor #2] Add TableDescriptor and `CommitCo…
Browse files Browse the repository at this point in the history
…ordinatorClient` API (delta-io#3797)"

This reverts commit 6ae4b62.
  • Loading branch information
scottsand-db committed Dec 3, 2024
1 parent 510c170 commit 67638c7
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 374 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
final TableIdentifier that = (TableIdentifier) o;
TableIdentifier that = (TableIdentifier) o;
return Arrays.equals(getNamespace(), that.getNamespace()) && getName().equals(that.getName());
}

Expand Down

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions kernel/kernel-api/src/main/java/io/delta/kernel/engine/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package io.delta.kernel.engine;

import io.delta.kernel.annotation.Evolving;
import io.delta.kernel.coordinatedcommits.CommitCoordinatorClient;
import java.util.Map;

/**
Expand Down Expand Up @@ -57,23 +56,6 @@ public interface Engine {
*/
ParquetHandler getParquetHandler();

/**
* Retrieves a {@link CommitCoordinatorClient} for the specified commit coordinator name.
*
* @param commitCoordinatorName The name (identifier) of the underlying commit coordinator client
* to instantiate
* @param commitCoordinatorConf The configuration settings for the underlying commit coordinator
* client, taken directly from the Delta table property {@link
* io.delta.kernel.internal.TableConfig#COORDINATED_COMMITS_TABLE_CONF}
* @return A {@link CommitCoordinatorClient} implementation corresponding to the specified commit
* coordinator name
* @since 3.3.0
*/
default CommitCoordinatorClient getCommitCoordinatorClient(
String commitCoordinatorName, Map<String, String> commitCoordinatorConf) {
throw new UnsupportedOperationException("Not implemented");
}

/**
* Retrieves a {@link CommitCoordinatorClientHandler} for the specified commit coordinator client.
*
Expand Down

This file was deleted.

0 comments on commit 67638c7

Please sign in to comment.