You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello I'm trying to create a module with maturin and LazyFrame::anonymous_scan
Compilation works just fine but unfortunately it crashes at runtime
The goal is to implement projection_pushdown and predicate_pushdown once it's working
> maturin develop # works fine> python3 -c "import bigtable2; print(bigtable2.test())"
thread '<unnamed>' panicked at /Users/<USER>/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyo3-polars-0.11.3/src/lib.rs:244:71:
called `Result::unwrap()` on an `Err` value: Value("the enum variant FileScan::Anonymous cannot be serialized")note: run with `RUST_BACKTRACE=1` environment variable to display a backtraceTraceback (most recent call last): File "<string>", line 1, in<module>pyo3_runtime.PanicException: called `Result::unwrap()` on an `Err` value: Value("the enum variant FileScan::Anonymous cannot be serialized")
The text was updated successfully, but these errors were encountered:
Hello I'm trying to create a module with
maturin
andLazyFrame::anonymous_scan
Compilation works just fine but unfortunately it crashes at runtime
The goal is to implement
projection_pushdown
andpredicate_pushdown
once it's workingsrc/lib.rs
Cargo.toml
rust-toolchain.toml
Terminal
The text was updated successfully, but these errors were encountered: