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

    https://github.com/apache/spark/pull/16909#discussion_r105006782
  
    --- 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 --
    
    Should this be a assert? Or you may suddenly have a wrong result.


---
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