Ritchie Vink

Results 1104 comments of Ritchie Vink

The raising of eager seems to be correct. The join doesn't produce `b_right`: ```python df1 = pl.DataFrame({"a": [1,2,3]}).lazy() df2 = pl.DataFrame({"a": [1,2,3], "b": [4,5,6]}).lazy() df1.join(df2, on="a").collect() ``` ``` run JoinExec...

@nameexhaustion could you take a look at this one?

Have you tried setting the full schema? Setting only `columns` will set the names of the schema, but Polars will still determine the schema itself, which in this case will...

Thanks for the report and thank you for the minimal repro @cmdlineluser. Taking a look.

I think function expr should call the `to_field` with `Context::Aggregation`. Not sure, but the schema is incorrect.

I am opposed to a `coalesce` boolean flag as it is not valid for all join types. I do however think we must change the left join and create a...