aokolnychyi commented on a change in pull request #3661:
URL: https://github.com/apache/iceberg/pull/3661#discussion_r762210227



##########
File path: 
spark/v3.2/spark-extensions/src/test/java/org/apache/iceberg/spark/extensions/TestDelete.java
##########
@@ -555,10 +560,13 @@ public void testDeleteWithScalarSubquery() throws 
NoSuchTableException {
 
     createOrReplaceView("deleted_id", Arrays.asList(1, 100, null), 
Encoders.INT());
 
-    sql("DELETE FROM %s t WHERE id <= (SELECT min(value) FROM deleted_id)", 
tableName);
-    assertEquals("Should have expected rows",
-        ImmutableList.of(row(2, "hardware"), row(null, "hr")),
-        sql("SELECT * FROM %s ORDER BY id ASC NULLS LAST", tableName));
+    // TODO: Spark does not support AQE and DPP with aggregates at the moment

Review comment:
       That's an issue I don't have a solution for. It will be pretty tough if 
even possible to overcome.




-- 
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]

Reply via email to