Skip to content

Commit

Permalink
Fixing compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nsivabalan committed Mar 22, 2023
1 parent 8a64065 commit ab4d5a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected HoodieTable createTable(HoodieWriteConfig config, Configuration hadoop

@Override
protected HoodieTable createTable(HoodieWriteConfig config, Configuration hadoopConf, HoodieTableMetaClient metaClient) {
return HoodieJavaTable.create(config, context, metaClient);
return HoodieJavaTable.create(config, (HoodieJavaEngineContext) context, metaClient);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected HoodieTable createTable(HoodieWriteConfig config, Configuration hadoop

@Override
protected HoodieTable createTable(HoodieWriteConfig config, Configuration hadoopConf, HoodieTableMetaClient metaClient) {
return HoodieSparkTable.create(config, context, metaClient);
return HoodieSparkTable.create(config, (HoodieSparkEngineContext) context, metaClient);
}

@Override
Expand Down

0 comments on commit ab4d5a5

Please sign in to comment.