Skip to content

Commit d36f2f0

Browse files
committed
indentation
1 parent 858c0ec commit d36f2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/SortExec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ object SortExec {
201201
val prefixComputer = new UnsafeExternalRowSorter.PrefixComputer {
202202
private val result = new UnsafeExternalRowSorter.PrefixComputer.Prefix
203203
override def computePrefix(row: InternalRow):
204-
UnsafeExternalRowSorter.PrefixComputer.Prefix = {
204+
UnsafeExternalRowSorter.PrefixComputer.Prefix = {
205205
val prefix = prefixProjection.apply(row)
206206
result.isNull = prefix.isNullAt(0)
207207
result.value = if (result.isNull) prefixExpr.nullValue else prefix.getLong(0)

0 commit comments

Comments
 (0)