1
0

[MINOR] Fix Javadoc wrong references (#3115)

This commit is contained in:
Wei
2021-06-19 12:51:54 +08:00
committed by GitHub
parent 53396061cc
commit 7865da1e15
3 changed files with 4 additions and 5 deletions

View File

@@ -19,7 +19,6 @@
package org.apache.hudi.table.action.rollback; package org.apache.hudi.table.action.rollback;
import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.log4j.LogManager; import org.apache.log4j.LogManager;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
@@ -88,7 +87,7 @@ public class RollbackUtils {
/** /**
* Generate all rollback requests that needs rolling back this action without actually performing rollback for COW table type. * Generate all rollback requests that needs rolling back this action without actually performing rollback for COW table type.
* @param fs instance of {@link FileSystem} to use. * @param engineContext instance of {@link HoodieEngineContext} to use.
* @param basePath base path of interest. * @param basePath base path of interest.
* @param config instance of {@link HoodieWriteConfig} to use. * @param config instance of {@link HoodieWriteConfig} to use.
* @return {@link List} of {@link ListingBasedRollbackRequest}s thus collected. * @return {@link List} of {@link ListingBasedRollbackRequest}s thus collected.

View File

@@ -135,8 +135,8 @@ public class RowKeyGeneratorHelper {
* 4 = "StructField(nested_col,StructType(StructField(prop1,StringType,false), StructField(prop2,LongType,false)),false)" * 4 = "StructField(nested_col,StructType(StructField(prop1,StringType,false), StructField(prop2,LongType,false)),false)"
* *
* the logic fetches the value from field nested_col.prop1. * the logic fetches the value from field nested_col.prop1.
* If any level of the nested field is null, {@link NULL_RECORDKEY_PLACEHOLDER} is returned. * If any level of the nested field is null, {@link KeyGenUtils#NULL_RECORDKEY_PLACEHOLDER} is returned.
* If the field value is an empty String, {@link EMPTY_RECORDKEY_PLACEHOLDER} is returned. * If the field value is an empty String, {@link KeyGenUtils#EMPTY_RECORDKEY_PLACEHOLDER} is returned.
* *
* @param row instance of {@link Row} of interest * @param row instance of {@link Row} of interest
* @param positions tree style positions where the leaf node need to be fetched and returned * @param positions tree style positions where the leaf node need to be fetched and returned

View File

@@ -63,7 +63,7 @@ class RealtimeUnmergedRecordReader extends AbstractRealtimeRecordReader
* clients to consume. * clients to consume.
* *
* @param split File split * @param split File split
* @param jobConf Job Configuration * @param job Job Configuration
* @param realReader Parquet Reader * @param realReader Parquet Reader
*/ */
public RealtimeUnmergedRecordReader(RealtimeSplit split, JobConf job, public RealtimeUnmergedRecordReader(RealtimeSplit split, JobConf job,