Github user davies commented on a diff in the pull request:
https://github.com/apache/spark/pull/7116#discussion_r33595774
--- Diff: sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala ---
@@ -1434,7 +1434,9 @@ class DataFrame private[sql](
}
}
- private[sql] def internalRowRdd = queryExecution.executedPlan.execute()
+ // Note that the RDD is memoized. Once called, it won't change even if
you change any
+ // query planning related Spark SQL configurations.
+ private[sql] def internalRowRdd = queryExecution.toRdd
--- End diff --
Will this be more clear that if we change it to `lazy val` ? cc @marmbrus
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]