Skip to content

Commit

Permalink
[fix] Change method name
Browse files Browse the repository at this point in the history
  • Loading branch information
tsreaper committed Nov 12, 2024
1 parent 592e119 commit bab3048
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ private List<SchemaChange> toSchemaChange(
if (!oldTableNonPhysicalColumnIndex.containsKey(
((ModifyPhysicalColumnType) change).getOldColumn().getName())) {
ModifyPhysicalColumnType modify = (ModifyPhysicalColumnType) change;
generatedNestedColumnUpdates(
generateNestedColumnUpdates(
Collections.singletonList(modify.getOldColumn().getName()),
LogicalTypeConversion.toDataType(
modify.getOldColumn().getDataType().getLogicalType()),
Expand Down Expand Up @@ -668,7 +668,7 @@ && handleMaterializedTableChange(change, schemaChanges)) {
throw new UnsupportedOperationException("Change is not supported: " + change.getClass());
}

private void generatedNestedColumnUpdates(
private void generateNestedColumnUpdates(
List<String> fieldNames,
org.apache.paimon.types.DataType oldType,
org.apache.paimon.types.DataType newType,
Expand Down Expand Up @@ -747,7 +747,7 @@ private void generatedNestedColumnUpdates(
fullFieldNames.toArray(new String[0]),
field.description()));
}
generatedNestedColumnUpdates(
generateNestedColumnUpdates(
fullFieldNames, oldField.type(), field.type(), schemaChanges);
}
}
Expand Down

0 comments on commit bab3048

Please sign in to comment.