gustavoatt opened a new issue, #7297:
URL: https://github.com/apache/iceberg/issues/7297
### Apache Iceberg version
main (development)
### Query engine
Spark
### Please describe the bug 🐞
In `TestPartitionedWritesToWapBranch` I'm unable to read from the partitions
table newly added data on the Wap branch. That is, data that has been added on
the wap branch cannot be then read
```java
spark.conf().set(SparkSQLProperties.WAP_BRANCH, BRANCH);
spark
.read()
.format("iceberg")
.load(tableName + ".partitions")
.select("spec_id", "partition.id_trunc", "partition.data")
.orderBy("spec_id", "partition.id_trunc");
```
When I try to read from the partitions table as in the above I'm not able to
see the newly created partitions.
--
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]