Skip to content

Commit 543ef9d

Browse files
fix code style issues
1 parent 9cf0396 commit 543ef9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Expression.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ abstract class LeafExpression extends Expression with trees.LeafNode[Expression]
244244
}
245245

246246
/**
247-
* Root class for rewritten single operand UDF expression. By default, we assume it produces Null if
248-
* its operand is null. Exceptional case requires to update the optimization rule
247+
* Root class for rewritten single operand UDF expression. By default, we assume it produces Null
248+
* if its operand is null. Exceptional case requires to update the optimization rule
249249
* at [[optimizer.ConstantFolding ConstantFolding]]
250250
*/
251251
abstract class UnaryExpression extends Expression with trees.UnaryNode[Expression] {

sql/hive/src/main/scala/org/apache/spark/sql/hive/hiveUdfs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ private[hive] case class HiveGenericUdf(name: String, children: Seq[Expression])
214214

215215
@transient
216216
protected lazy val returnInspector = function.initialize(argumentInspectors.toArray)
217-
217+
218218
@transient
219219
protected lazy val isUDFDeterministic = {
220220
val udfType = function.getClass().getAnnotation(classOf[HiveUDFType])

0 commit comments

Comments
 (0)