zohar-plutoflume commented on issue #7998:
URL: https://github.com/apache/iceberg/issues/7998#issuecomment-1623909451
after looking into it a bit more I think iceberg is not using the spark
dynamic filtering but does it on its own, using the
RowLevelCommandDynamicPruning
however it seems like it has a similar condition check:
private def isCandidate(command: RowLevelCommand): Boolean =
command.condition match {
case Some(cond) if cond != Literal.TrueLiteral => true
case _ => false
}
and I wonder what would be a work around it
--
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]