Bridger Putnam

Results 4 comments of Bridger Putnam

Is there any way to create relations using anything other than Prisma's auto-generated id? I have a type Book with isbn as a unique string, and would like to be...

A work around I'm implementing right now is having a separate Index type for whatever you're going to be querying, and store the relevant data there lowercased. Then you can...

I just got bit by this too, `pl.scan_parquet(f.name).with_columns(pl.col(pl.Utf8).str.strip_chars()).sink_parquet(f.name)`. ~~The [seek_len function](https://github.com/pola-rs/polars/blame/b14091a14fc0465bd6c5b11636f0d5820c1f5d91/crates/polars-parquet/src/parquet/read/stream.rs#L11) feels sketchy at best in an asynchronous context to determine the file size.~~ ~~On https://github.com/rust-lang/rust/issues/59359 there's mention of using...

If there is no streaming ndjson reader, does `scan_ndjson` have a purpose in its current state? I ran into this when trying to convert a large ndjson file to parquet...