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 cb1e922 commit e241748Copy full SHA for e241748
sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/InMemoryRelation.scala
@@ -216,8 +216,8 @@ case class CachedRDDBuilder(
216
private val materializedPartitions = cachedPlan.session.sparkContext.longAccumulator
217
218
val cachedName = tableName.map(n => s"In-memory table $n")
219
- .getOrElse(cachedPlan.simpleStringWithNodeId())
220
-
+ .getOrElse(StringUtils.abbreviate(cachedPlan.toString, 1024))
+
221
val supportsColumnarInput: Boolean = {
222
cachedPlan.supportsColumnar &&
223
serializer.supportsColumnarInput(cachedPlan.output)
0 commit comments