[MINOR] fix typo,'SPAKR' corrected to 'SPARK' (#3721)
This commit is contained in:
4
.github/workflows/bot.yml
vendored
4
.github/workflows/bot.yml
vendored
@@ -31,5 +31,5 @@ jobs:
|
||||
- name: Build Project
|
||||
env:
|
||||
SCALA_PROFILE: ${{ matrix.scala }}
|
||||
SPAKR_PROFILE: ${{ matrix.spark }}
|
||||
run: mvn install -P "$SCALA_PROFILE,$SPAKR_PROFILE" -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
||||
SPARK_PROFILE: ${{ matrix.spark }}
|
||||
run: mvn install -P "$SCALA_PROFILE,$SPARK_PROFILE" -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
||||
|
||||
@@ -850,7 +850,7 @@ public class TestHiveSyncTool {
|
||||
"Hive Schema should match the table schema + partition field");
|
||||
assertEquals(1, hiveClient.scanTablePartitions(HiveTestUtil.hiveSyncConfig.tableName).size(),"Table partitions should match the number of partitions we wrote");
|
||||
assertEquals(emptyCommitTime,
|
||||
hiveClient.getLastCommitTimeSynced(HiveTestUtil.hiveSyncConfig.tableName).get(),"The last commit that was sycned should be updated in the TBLPROPERTIES");
|
||||
hiveClient.getLastCommitTimeSynced(HiveTestUtil.hiveSyncConfig.tableName).get(),"The last commit that was synced should be updated in the TBLPROPERTIES");
|
||||
|
||||
// make sure correct schema is picked
|
||||
Schema schema = SchemaTestUtil.getSimpleSchema();
|
||||
|
||||
@@ -1295,7 +1295,7 @@ public class TestHoodieDeltaStreamer extends TestHoodieDeltaStreamerBase {
|
||||
"Table partitions should match the number of partitions we wrote");
|
||||
assertEquals(lastInstantForUpstreamTable,
|
||||
hiveClient.getLastCommitTimeSynced(hiveSyncConfig.tableName).get(),
|
||||
"The last commit that was sycned should be updated in the TBLPROPERTIES");
|
||||
"The last commit that was synced should be updated in the TBLPROPERTIES");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user