FANNG1 commented on code in PR #3795:
URL: https://github.com/apache/gravitino/pull/3795#discussion_r1663808012
##########
flink-connector/src/main/java/com/datastrato/gravitino/flink/connector/catalog/BaseCatalog.java:
##########
@@ -337,6 +411,29 @@ public void alterPartitionColumnStatistics(
protected abstract PropertiesConverter getPropertiesConverter();
+ protected CatalogBaseTable toFlinkTable(Table table) {
+
+ org.apache.flink.table.api.Schema.Builder builder =
+ org.apache.flink.table.api.Schema.newBuilder();
+ for (Column column : table.columns()) {
+ builder
+ .column(column.name(), TypeUtils.toFlinkType(column.dataType()))
Review Comment:
OH, it's `column nullable` not `nullable exception`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]