rolling.agg
not returning the correct schema when fill_null
is used
#19011
Labels
accepted
Ready for implementation
bug
Something isn't working
needs triage
Awaiting prioritization by a maintainer
python
Related to Python Polars
Checks
Reproducible example
Log output
Issue description
The schema of rolling.agg is wrong when
fill_null
is used.In the example above, we applied
fill_null
topl.col('a')
and the schema switched from a list to a scalar.Expected behavior
I expect the following schema output
Schema([('idx', Int64), ('a', List(Int64)), ('a_1', List(Int64))])
Installed versions
The text was updated successfully, but these errors were encountered: