Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
caicancai committed Dec 20, 2024
1 parent 7c22892 commit 077070a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
/**
* Arrow field type.
*/
public class ArrowFieldTypeFactory {
public class ArrowFieldType {

private ArrowFieldTypeFactory() {
private ArrowFieldType() {
throw new UnsupportedOperationException("Utility class");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private static RelDataType deduceRowType(Schema schema,
final RelDataTypeFactory.Builder builder = typeFactory.builder();
for (Field field : schema.getFields()) {
builder.add(field.getName(),
ArrowFieldTypeFactory.toType(field.getType(), typeFactory));
ArrowFieldType.toType(field.getType(), typeFactory));
}
return builder.build();
}
Expand Down

0 comments on commit 077070a

Please sign in to comment.