diff --git a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/hudi/HoodieFileIndex.scala b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/hudi/HoodieFileIndex.scala index 2618d92af..af0c2cc11 100644 --- a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/hudi/HoodieFileIndex.scala +++ b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/hudi/HoodieFileIndex.scala @@ -106,7 +106,7 @@ case class HoodieFileIndex( nameFieldMap.getOrElse(column, throw new IllegalArgumentException(s"Cannot find column: '" + s"$column' in the schema[${schema.fields.mkString(",")}]"))) new StructType(partitionFields) - } else { // If the partition columns have not stored in hoodie.properites(the table that was + } else { // If the partition columns have not stored in hoodie.properties(the table that was // created earlier), we trait it as a non-partitioned table. logWarning("No partition columns available from hoodie.properties." + " Partition pruning will not work") diff --git a/hudi-sync/hudi-sync-common/src/main/java/org/apache/hudi/sync/common/AbstractSyncHoodieClient.java b/hudi-sync/hudi-sync-common/src/main/java/org/apache/hudi/sync/common/AbstractSyncHoodieClient.java index cdda18da6..4d0ef8000 100644 --- a/hudi-sync/hudi-sync-common/src/main/java/org/apache/hudi/sync/common/AbstractSyncHoodieClient.java +++ b/hudi-sync/hudi-sync-common/src/main/java/org/apache/hudi/sync/common/AbstractSyncHoodieClient.java @@ -74,7 +74,7 @@ public abstract class AbstractSyncHoodieClient { * @param inputFormatClass The input format class of this table. * @param outputFormatClass The output format class of this table. * @param serdeClass The serde class of this table. - * @param serdeProperties The serde properites of this table. + * @param serdeProperties The serde properties of this table. * @param tableProperties The table properties for this table. */ public abstract void createTable(String tableName, MessageType storageSchema,