Tom Ebergen

Results 179 comments of Tom Ebergen

closing since the benchmark was just updated with data fusion version 41.0.0. @Dandandan @andygrove let me know if there is anything I missed.

Hmmm, I started working on it and am a bit stuck. All expressions in the filter expression are translated from `BoundReferenceExpression` to `BoundColumnReference` Expressions when `expr_filter.ToExpression(*column_ref);` is called. This is...

nvm, figured it out. The physical column index is the same for all bound refs, so we can just iterate through the table filter once to find it, do the...

Thanks @krlmlr . I made some small edits so the regression test runner would pick up duckplyr 👍

Hi @jonashaag, I'm not sure what has already been mentioned since the thread history has been cleaned up, so sorry if I'm repeating anything you have already read/tried. It seems...

It does, you're right, I didn't think it all the way through

I'll try to brainstorm other workarounds or fixes. I'll post here if I find something, sorry for the confusion

Ok, I think I found a work around that gives you the same results. You just need to add the filter `t2.col1 = 'missing'`. This won't affect the result since...

Hi Jonas, Hmm, yes. The real world query does indeed make this problem harder to solve, as the string comparison for `t1.col2 = missing` makes the planner incorrectly think that...

From what I have gathered, sorted mode applied only to data generation, meaning you can generate sorted input data. If the order of the output data is different, it should...