Skip to content

Commit f4cf2c2

Browse files
author
Davies Liu
committed
fix style
1 parent 99fc139 commit f4cf2c2

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class CodeGenContext {
162162
* Generate code for equal expression in Java
163163
*/
164164
def genEqual(dataType: DataType, c1: String, c2: String): String = dataType match {
165-
case BinaryType => s"java.util.Arrays.equals($c1, $c2)"
165+
case BinaryType => s"java.util.Arrays.equals($c1, $c2)"
166166
case IntegerType | BooleanType | LongType | DoubleType | FloatType | ShortType | ByteType
167167
| DateType => s"$c1 == $c2"
168168
case other => s"$c1.equals($c2)"

0 commit comments

Comments
 (0)