Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MINOR] Fix a few typos in HoodieIndex #6784

Merged
merged 1 commit into from
Sep 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ public HoodieData<WriteStatus> updateLocation(
* implementation is able to obtain the same mapping, for two hoodie keys with same `recordKey` but different
* `partitionPath`
*
* @return whether or not, the index implementation is global in nature
* @return whether the index implementation is global in nature
*/
@PublicAPIMethod(maturity = ApiMaturityLevel.STABLE)
public abstract boolean isGlobal();

/**
* This is used by storage to determine, if its safe to send inserts, straight to the log, i.e having a
* This is used by storage to determine, if it is safe to send inserts, straight to the log, i.e. having a
* {@link FileSlice}, with no data file.
*
* @return Returns true/false depending on whether the impl has this capability
Expand All @@ -133,7 +133,7 @@ public HoodieData<WriteStatus> updateLocation(
public abstract boolean isImplicitWithStorage();

/**
* To indicate if a operation type requires location tagging before writing
* To indicate if an operation type requires location tagging before writing
*/
@PublicAPIMethod(maturity = ApiMaturityLevel.EVOLVING)
public boolean requiresTagging(WriteOperationType operationType) {
Expand Down