bharos commented on code in PR #12319: URL: https://github.com/apache/iceberg/pull/12319#discussion_r1962382670
########## spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java: ########## @@ -1085,4 +1088,43 @@ private ExecutorService getService() { return service; } } + + /** + * Returns the first partition spec in an IcebergTable that shares the same names and ordering as + * the partition columns in a given Spark Table. Throws an error if not found + */ + private static PartitionSpec findCompatibleSpec( + Table icebergTable, SparkSession spark, String sparkTable) throws AnalysisException { + List<String> parts = Lists.newArrayList(Splitter.on('.').limit(2).split(sparkTable)); + String db = parts.size() == 1 ? "default" : parts.get(0); + String table = parts.get(parts.size() == 1 ? 0 : 1); + + List<String> sparkPartNames = + spark.catalog().listColumns(db, table).collectAsList().stream() + .filter(org.apache.spark.sql.catalog.Column::isPartition) + .map(org.apache.spark.sql.catalog.Column::name) + .map(name -> name.toLowerCase(Locale.ROOT)) + .collect(Collectors.toList()); + + for (PartitionSpec icebergSpec : icebergTable.specs().values()) { Review Comment: I see that the [specs are in an unordered map.](https://github.com/apache/iceberg/blob/25e7897b1161d5548ff428e0ec9016d5934635a1/core/src/main/java/org/apache/iceberg/util/PartitionUtil.java#L104) Should we iterate the specs from latest to oldest ? So that there is a predictable behavior in case the source spec can match multiple specs ? Or is it not a possible scenario? -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org