You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ToLogicalPlan class constructor takes a SparkSession
argument which must be supplied by the caller.
We can simplify the API by making this parameter optional,
and defaulting to `SparkSession.builder().getOrCreate()`.
The `LocalFiles.scala` test has been modified so that both
usages get tested.
The need for this was triggered by invoking this API from Python
code (pyspark). Passing the SparkSession object from python
involves accessing internal handles, which doesn’t make for a
good user experience.
0 commit comments