Daniël Heres

Results 167 comments of Daniël Heres

Releasing is mostly automated. See: https://github.com/sqlparser-rs/sqlparser-rs/blob/main/docs/releasing.md

I believe this is completed by the work and we should track any upcoming issues somewhere else.

``` ❯ select arrow_typeof('1.1'::decimal); +--------------------------+ | arrowtypeof(Utf8("1.1")) | +--------------------------+ | Decimal128(38, 10) | +--------------------------+ 1 row in set. Query took 0.030 seconds. ```

> ``` > Comparing main and hashjoin-project-pushdown > -------------------- > Benchmark tpch.json > -------------------- > ┏━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ > ┃ Query ┃ main ┃ hashjoin-project-pushdown ┃ Change ┃ > ┡━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩ > │...

These are my results for tcph_mem, seems to be a small but reasonable speed up 🚀 : ``` Comparing main and hashjoin-project-pushdown -------------------- Benchmark tpch_mem.json -------------------- ┏━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ ┃ Query ┃...

Change is looking good. As for performance, the difference on the TPC-H benchmarks is small as most of the time is spent filtering / repartitioning / hashing / ... I...

Thank you @my-vegetable-has-exploded !

You can try to put it behind a `Arc` to make the cloning faster?

You can enable lz4 compression support via `ipc_compression` feature flag of arrow.