amogh-jahagirdar commented on code in PR #15301:
URL: https://github.com/apache/iceberg/pull/15301#discussion_r2809521204
##########
spark/v4.1/spark/src/test/java/org/apache/iceberg/spark/source/TestPositionDeletesTable.java:
##########
@@ -990,19 +984,17 @@ public void testWriteMixedRows() throws Exception {
for (String partValue : ImmutableList.of("a", "b")) {
try (CloseableIterable<ScanTask> tasks = tasks(posDeletesTable, "data",
partValue)) {
String fileSetID = UUID.randomUUID().toString();
+ SparkTableCache.get().add(fileSetID, posDeletesTable);
stageTask(tab, fileSetID, tasks);
Dataset<Row> scanDF =
spark
.read()
.format("iceberg")
- .option(SparkReadOptions.SCAN_TASK_SET_ID, fileSetID)
- .load(posDeletesTableName);
+ .option(SparkReadOptions.FILE_OPEN_COST, Integer.MAX_VALUE)
Review Comment:
Not entirely following why the file open cost needed to explicitly be set
now?
--
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]