Skip to content

Commit

Permalink
Fix - serde parameters getting overrided on table property update
Browse files Browse the repository at this point in the history
  • Loading branch information
kumudkumartirupati committed Jul 8, 2022
1 parent 243d486 commit 62b02fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void updateTableProperties(String tableName, Map<String, String> tablePro
return;
}
try {
updateTableParameters(awsGlue, databaseName, tableName, tableProperties, true);
updateTableParameters(awsGlue, databaseName, tableName, tableProperties, false);
} catch (Exception e) {
throw new HoodieGlueSyncException("Fail to update properties for table " + tableId(databaseName, tableName), e);
}
Expand Down

0 comments on commit 62b02fd

Please sign in to comment.