Skip to content

Commit dea644a

Browse files
committed
Address comments.
1 parent 6400eb2 commit dea644a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ case class Expand(
9393
child.asInstanceOf[CodegenSupport].produce(ctx, this)
9494
}
9595

96-
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String = null): String = {
96+
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String): String = {
9797
/*
9898
* When the projections list looks like:
9999
* expr1A, exprB, expr1C

sql/core/src/main/scala/org/apache/spark/sql/execution/aggregate/TungstenAggregate.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ case class TungstenAggregate(
135135
}
136136
}
137137

138-
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String = null): String = {
138+
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String): String = {
139139
if (groupingExpressions.isEmpty) {
140140
doConsumeWithoutKeys(ctx, input)
141141
} else {

sql/core/src/main/scala/org/apache/spark/sql/execution/joins/BroadcastHashJoin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ case class BroadcastHashJoin(
107107
streamedPlan.asInstanceOf[CodegenSupport].produce(ctx, this)
108108
}
109109

110-
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String = null): String = {
110+
override def doConsume(ctx: CodegenContext, input: Seq[ExprCode], row: String): String = {
111111
if (joinType == Inner) {
112112
codegenInner(ctx, input)
113113
} else {

0 commit comments

Comments
 (0)