RussellSpitzer commented on code in PR #12254:
URL: https://github.com/apache/iceberg/pull/12254#discussion_r2112725064
##########
spark/v3.5/spark/src/test/java/org/apache/iceberg/spark/actions/TestRemoveOrphanFilesAction.java:
##########
@@ -344,6 +374,8 @@ public void testWapFilesAreKept() {
// wap write
df.select("c1", "c2",
"c3").write().format("iceberg").mode("append").save(tableLocation);
+ spark.conf().unset(SparkSQLProperties.WAP_ID);
Review Comment:
We should be using withSQLConf then for this test then like
```java
withSQLConf(
ImmutableMap.of(confName, "2m"),
() -> {
SparkConfParser parser = new SparkConfParser(spark, table,
ImmutableMap.of());
Duration duration =
parser.durationConf().sessionConf(confName).parseOptional();
assertThat(duration).hasMinutes(2);
});
```
or a cloned Spark Session
--
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]