Cory Grinstead
Cory Grinstead
so i think lazy is probably the best way to go with wasm. threadpools in browser are a nightmare & you have to run every parallel operation from a worker....
reading through the docs... seems like a really cool project. Not relying on the V8 runtime seems like a game changer in terms of performance & interop. It looks like...
I did give this a try, it looks like without `napi_create_bigint_words` support, the module will not load. Will need to wait for that method. See https://github.com/oven-sh/bun/issues/158 for Node-API implementation status.
This is already supported in Rust via `AnonymousScan` trait. This trait allows for predicate, projection & slice pushdowns. We could potentially look at exposing a python interface to interact with...
>Is there a simple way to transform py-porlars examples to rust polars examples? Same with JS. The syntax is slightly different, but overall results in the same outputs. Wondering if...
closing in favor of https://github.com/pola-rs/polars/issues/10276
closing this as completed.
closing in favor of https://github.com/pola-rs/polars/issues/10276
IMO, it'd be preferred to do this on the rust side. That way we can have support for it in sql, python, .... a datafusion based project [glardb](https://github.com/GlareDB/glaredb) recently added...
@groobyming I ran into a similar issue here https://github.com/sqlparser-rs/sqlparser-rs/issues/1227. If you want your dialect to "extend" an existing dialect, you can implement the `dialect` function ```rs impl Dialect for MyDialect...