manuzhang commented on code in PR #14155:
URL: https://github.com/apache/iceberg/pull/14155#discussion_r2576227465
##########
spark/v4.1/spark-extensions/src/test/java/org/apache/iceberg/spark/extensions/TestMerge.java:
##########
@@ -2567,16 +2567,6 @@ public void testMergeWithInvalidAssignmentsAnsi() {
.isInstanceOf(SparkRuntimeException.class)
.hasMessageContaining(
"[NOT_NULL_ASSERT_VIOLATION] NULL value appeared in
non-nullable field");
- assertThatThrownBy(
Review Comment:
Changes to the following test are restored after
https://github.com/apache/spark/pull/53229 in 4.1.0(RC2)
```
assertThatThrownBy(
() ->
sql(
"MERGE INTO %s t USING source s "
+ "ON t.id == s.c1 "
+ "WHEN MATCHED THEN "
+ " UPDATE SET t.s.n2 = s.c4",
commitTarget()))
.isInstanceOf(AnalysisException.class)
.hasMessageContaining("Cannot find data for the output column
`s`.`n2`.`dn2`");
});
}
```
--
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]