This is an automated email from the ASF dual-hosted git repository.

lidongdai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0192eb9d4c [Improve] Allow nullable for SeaTunnelRowType convert to 
Column (#8098)
0192eb9d4c is described below

commit 0192eb9d4caa6f8f0717a52a868f8b303c7a4952
Author: hailin0 <[email protected]>
AuthorDate: Sun Nov 24 17:36:58 2024 +0800

    [Improve] Allow nullable for SeaTunnelRowType convert to Column (#8098)
---
 .../java/org/apache/seatunnel/api/table/catalog/CatalogTableUtil.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/seatunnel-api/src/main/java/org/apache/seatunnel/api/table/catalog/CatalogTableUtil.java
 
b/seatunnel-api/src/main/java/org/apache/seatunnel/api/table/catalog/CatalogTableUtil.java
index c070101404..95eaa5563b 100644
--- 
a/seatunnel-api/src/main/java/org/apache/seatunnel/api/table/catalog/CatalogTableUtil.java
+++ 
b/seatunnel-api/src/main/java/org/apache/seatunnel/api/table/catalog/CatalogTableUtil.java
@@ -255,7 +255,7 @@ public class CatalogTableUtil implements Serializable {
                 finalColumns.add(column);
             } else {
                 finalColumns.add(
-                        PhysicalColumn.of(fieldNames[i], fieldTypes[i], 0, 
false, null, null));
+                        PhysicalColumn.of(fieldNames[i], fieldTypes[i], 0, 
true, null, null));
             }
         }
 

Reply via email to