cloud-fan commented on a change in pull request #26604: [SPARK-29968][SQL]
Remove the Predicate code from SparkPlan
URL: https://github.com/apache/spark/pull/26604#discussion_r348303360
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/ExternalCatalogUtils.scala
##########
@@ -148,7 +147,7 @@ object ExternalCatalogUtils {
}
val boundPredicate =
- InterpretedPredicate.create(predicates.reduce(And).transform {
+ Predicate.create(predicates.reduce(And).transform {
Review comment:
Sometimes it's better to use the interpreted version if the input data is
known to be small. Codegen can be slower as compiling takes time.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]