hubgeter commented on code in PR #62821:
URL: https://github.com/apache/doris/pull/62821#discussion_r3346752389
##########
fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergUtils.java:
##########
@@ -704,6 +705,57 @@ public static Map<String, String>
getPartitionInfoMap(PartitionData partitionDat
return partitionInfoMap;
}
+ public static List<String> getIdentityPartitionColumns(Table table) {
+ LinkedHashSet<String> partitionColumns = new LinkedHashSet<>();
+ for (PartitionSpec spec : table.specs().values()) {
+ for (PartitionField partitionField : spec.fields()) {
Review Comment:
be/src/format/table/iceberg_reader.cpp:179 reslove it.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]