adutra commented on PR #3226: URL: https://github.com/apache/polaris/pull/3226#issuecomment-3628582158
I might be wrong but it seems the locations are taken into account for overlap in `BasePolarisTableOperations#doCommit`: https://github.com/apache/polaris/blob/fe57ea1b2a68a8e95b38705b05656431a164a744/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java#L1465-L1472 The problem is that later on in that same method, the internal properties map is computed: https://github.com/apache/polaris/blob/fe57ea1b2a68a8e95b38705b05656431a164a744/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java#L1506 But the map currently doesn't include `write.data.path` or `write.metadata.path`: https://github.com/apache/polaris/blob/fe57ea1b2a68a8e95b38705b05656431a164a744/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java#L1658-L1702 So, the only way to check those locations is to load the table from the object store. -- 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]
