Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22976#discussion_r231885902
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/GenerateOrdering.scala
 ---
    @@ -68,57 +68,51 @@ object GenerateOrdering extends 
CodeGenerator[Seq[SortOrder], Ordering[InternalR
         genComparisons(ctx, ordering)
       }
     
    +  /**
    +   * Creates the variables for ordering based on the given order.
    +   */
    +  private def createOrderKeys(
    +    ctx: CodegenContext,
    +    row: String,
    +    ordering: Seq[SortOrder]): Seq[ExprCode] = {
    +    ctx.INPUT_ROW = row
    +    ctx.currentVars = null
    +    ordering.map(_.child.genCode(ctx))
    +  }
    +
       /**
        * Generates the code for ordering based on the given order.
        */
       def genComparisons(ctx: CodegenContext, ordering: Seq[SortOrder]): 
String = {
         val oldInputRow = ctx.INPUT_ROW
         val oldCurrentVars = ctx.currentVars
    -    val inputRow = "i"
    -    ctx.INPUT_ROW = inputRow
         // to use INPUT_ROW we must make sure currentVars is null
         ctx.currentVars = null
    --- End diff --
    
    Now, can we remove this line?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to