Skip to content

Commit

Permalink
Merge branch 'apache:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
luzongzhu authored Jul 22, 2024
2 parents 7bc4313 + b0fe432 commit 37a8350
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ private CatalogTable toCatalogTable(
BasicTypeDefine.<DataType>builder()
.name(dataField.name())
.comment(dataField.description())
.nativeType(dataField.type());
.nativeType(dataField.type())
.nullable(dataField.type().isNullable());
Column column = SchemaUtil.toSeaTunnelType(typeDefineBuilder.build());
builder.column(column);
});
Expand Down

0 comments on commit 37a8350

Please sign in to comment.