Daniël Heres

Results 167 comments of Daniël Heres

I am wondering if simple `like` patterns are not already converted to `startswith` etc, such that pruning already is applied or we need to implement that case instead of for...

I would take a look at the (physical plan) of queries involving like first to see if it still uses like or is transformed to another function.

I think it’s fine to support `like` for now and leave the further combination / optimization for future work. I see that only simplifying to `starts_with` won't get all the...

As far as I can see, we don't have to validate the IPC files: * Ballista has control over writing the output * In a power down scenario where the...

> 🤖: Benchmark completed > > Details > > ``` > group main specialize > ----- ---- ---------- > in_list_f32 (1024, 0) IN (1, 0) 1.16 4.2±0.01µs ? ?/sec 1.00...

What about `slice::contains`? Seems like it should be somewhere between the const-sized approach and binary search in terms of threshold window.

> > What about `slice::contains`? Seems like it should be somewhere between the const-sized approach and binary search in terms of threshold window. > > It loses all the time...