Skip to content

Commit

Permalink
[Kernel] Fix typo (delta-io#3766)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr authored Oct 11, 2024
1 parent e6cd0ff commit 09fb300
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Map<String, String> registerTable(
// table identifier into `CommitCoordinatorClient` in all APIs.
return commitCoordinatorClient.registerTable(
new Path(logPath),
Optional.empty() /* table identfier */,
Optional.empty() /* table identifier */,
currentVersion,
StorageKernelAPIAdapter.toStorageAbstractMetadata(currentMetadata),
StorageKernelAPIAdapter.toStorageAbstractProtocol(currentProtocol));
Expand All @@ -116,7 +116,7 @@ public CommitResponse commit(
commitCoordinatorClient.commit(
logStore,
hadoopConf,
new TableDescriptor(path, Optional.empty() /* table identfier */, tableConf),
new TableDescriptor(path, Optional.empty() /* table identifier */, tableConf),
commitVersion,
new Iterator<String>() {
@Override
Expand Down Expand Up @@ -150,7 +150,7 @@ public void backfillToVersion(
Path path = new Path(logPath);
LogStore logStore = LogStoreProvider.getLogStore(hadoopConf, path.toUri().getScheme());
TableDescriptor tableDesc =
new TableDescriptor(path, Optional.empty() /* table identfier */, tableConf);
new TableDescriptor(path, Optional.empty() /* table identifier */, tableConf);
commitCoordinatorClient.backfillToVersion(
logStore, hadoopConf, tableDesc, version, lastKnownBackfilledVersion);
}
Expand Down

0 comments on commit 09fb300

Please sign in to comment.