Skip to content

Commit 7e887b5

Browse files
authored
[MINOR] fix typo,'SPAKR' corrected to 'SPARK' (apache#3721)
1 parent aa54655 commit 7e887b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/bot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
- name: Build Project
3232
env:
3333
SCALA_PROFILE: ${{ matrix.scala }}
34-
SPAKR_PROFILE: ${{ matrix.spark }}
35-
run: mvn install -P "$SCALA_PROFILE,$SPAKR_PROFILE" -DskipTests=true -Dmaven.javadoc.skip=true -B -V
34+
SPARK_PROFILE: ${{ matrix.spark }}
35+
run: mvn install -P "$SCALA_PROFILE,$SPARK_PROFILE" -DskipTests=true -Dmaven.javadoc.skip=true -B -V

hudi-sync/hudi-hive-sync/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ private void verifyOldParquetFileTest(HoodieHiveClient hiveClient, String emptyC
850850
"Hive Schema should match the table schema + partition field");
851851
assertEquals(1, hiveClient.scanTablePartitions(HiveTestUtil.hiveSyncConfig.tableName).size(),"Table partitions should match the number of partitions we wrote");
852852
assertEquals(emptyCommitTime,
853-
hiveClient.getLastCommitTimeSynced(HiveTestUtil.hiveSyncConfig.tableName).get(),"The last commit that was sycned should be updated in the TBLPROPERTIES");
853+
hiveClient.getLastCommitTimeSynced(HiveTestUtil.hiveSyncConfig.tableName).get(),"The last commit that was synced should be updated in the TBLPROPERTIES");
854854

855855
// make sure correct schema is picked
856856
Schema schema = SchemaTestUtil.getSimpleSchema();

hudi-utilities/src/test/java/org/apache/hudi/utilities/functional/TestHoodieDeltaStreamer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ public void testBulkInsertsAndUpsertsWithSQLBasedTransformerFor2StepPipeline() t
12951295
"Table partitions should match the number of partitions we wrote");
12961296
assertEquals(lastInstantForUpstreamTable,
12971297
hiveClient.getLastCommitTimeSynced(hiveSyncConfig.tableName).get(),
1298-
"The last commit that was sycned should be updated in the TBLPROPERTIES");
1298+
"The last commit that was synced should be updated in the TBLPROPERTIES");
12991299
}
13001300

13011301
@Test

0 commit comments

Comments
 (0)