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

    https://github.com/apache/spark/pull/16909#discussion_r105093717
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/window/WindowFunctionFrame.scala
 ---
    @@ -164,9 +176,12 @@ private[window] final class SlidingWindowFunctionFrame(
       private[this] var inputLowIndex = 0
     
       /** Prepare the frame for calculating a new partition. Reset all 
variables. */
    -  override def prepare(rows: RowBuffer): Unit = {
    +  override def prepare(rows: ExternalAppendOnlyUnsafeRowArray): Unit = {
         input = rows
    -    nextRow = rows.next()
    +    inputIterator = input.generateIterator()
    +    if (inputIterator.hasNext) {
    --- End diff --
    
    Technically I was keeping it in-par with the earlier code. If there are any 
`rows` in the buffer, let `nextRow` point to it ... otherwise `nextRow` was 
already set to `null`. Anyways, I have changed this.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to