Hisoka-X commented on code in PR #7503:
URL: https://github.com/apache/seatunnel/pull/7503#discussion_r1732534435
##########
seatunnel-api/src/main/java/org/apache/seatunnel/api/table/catalog/TableSchema.java:
##########
@@ -57,6 +57,10 @@ public SeaTunnelRowType toPhysicalRowDataType() {
return new SeaTunnelRowType(fields, fieldTypes);
}
+ public List<Column> getPhysicalColumns() {
+ return
columns.stream().filter(Column::isPhysical).collect(Collectors.toList());
+ }
Review Comment:
All columns are physical at now. So add new method will let devs confused.
--
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]