We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c9549d commit 32a0fc7Copy full SHA for 32a0fc7
sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/InMemoryRelation.scala
@@ -381,6 +381,10 @@ object InMemoryRelation {
381
/* Visible for testing */
382
private[columnar] def clearSerializer(): Unit = synchronized { ser = None }
383
384
+ def convertToColumnarIfPossible(plan: SparkPlan): SparkPlan = {
385
+ getSerializer(plan.conf).convertToColumnarPlanIfPossible(plan)
386
+ }
387
+
388
def apply(
389
storageLevel: StorageLevel,
390
qe: QueryExecution,
0 commit comments