Skip to content

Commit 62b02fd

Browse files
Fix - serde parameters getting overrided on table property update
1 parent 243d486 commit 62b02fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hudi-aws/src/main/java/org/apache/hudi/aws/sync/AWSGlueCatalogSyncClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public void updateTableProperties(String tableName, Map<String, String> tablePro
197197
return;
198198
}
199199
try {
200-
updateTableParameters(awsGlue, databaseName, tableName, tableProperties, true);
200+
updateTableParameters(awsGlue, databaseName, tableName, tableProperties, false);
201201
} catch (Exception e) {
202202
throw new HoodieGlueSyncException("Fail to update properties for table " + tableId(databaseName, tableName), e);
203203
}

0 commit comments

Comments
 (0)