Skip to content

Commit a4be985

Browse files
committed
Changed length default to Long.MaxValue to turn off behavior unless it is specifically configured.
1 parent a5af842 commit a4be985

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/internal

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ object SQLConf {
16151615
.doc("Maximum number of characters to output for a plan string. If the plan is " +
16161616
"longer, it will end with a ... and further output will be truncated.")
16171617
.longConf
1618-
.createWithDefault(8192)
1618+
.createWithDefault(Long.MaxValue)
16191619
}
16201620

16211621
/**

0 commit comments

Comments
 (0)