jcsherin commented on PR #13059:
URL: https://github.com/apache/datafusion/pull/13059#issuecomment-2431855033

   The substrait plan in the [original 
reproducer](https://github.com/apache/datafusion/issues/11432#issue-2405650302) 
now contains the expected window frame values for `ROWS BETWEEN 1 PRECEDING AND 
1 FOLLOWING`:
   ```
   bounds_type: Rows,
   lower_bound: Some(
       Bound {
           kind: Some(
               Preceding(
                   Preceding {
                       offset: 1,
                   }
               ),
           ),
       },
   ),
   upper_bound: Some(
       Bound {
           kind: Some(
               Following(
                   Following {
                       offset: 1,
                   }
               ),
           ),
       },
   ),
   ``` 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to