buraksenn commented on PR #13201:
URL: https://github.com/apache/datafusion/pull/13201#issuecomment-2453567445

   Wanted to update here. I think I'm almost finished but probably encountered 
a side effect. This query fails in slt file:
   ```
   External error: query failed: DataFusion error: Arrow error: Invalid 
argument error: It is not possible to concatenate arrays of different data 
types.
   [SQL] select
   c9,
   sum(c5) over (order by c9) as sum1,
   avg(c5) over (order by c9) as avg1,
   count(c5) over (order by c9) as count1,
   max(c5) over (order by c9) as max1,
   min(c5) over (order by c9) as min1,
   first_value(c5) over (order by c9) as fv1,
   last_value(c5) over (order by c9) as lv1,
   nth_value(c5, 2) over (order by c9) as nv1
   from aggregate_test_100
   order by c9
   limit 5
   at test_files/window.slt:97
   
   Error: Execution("1 failures")
   error: test failed, to rerun pass `-p datafusion-sqllogictest --test 
sqllogictests`
   ```
   
   I hope to fix this and make this ready tomorrow


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to