polars-ocaml icon indicating copy to clipboard operation
polars-ocaml copied to clipboard

Results 30 polars-ocaml issues
Sort by recently updated
recently updated
newest added

I'm guessing the comment here: https://github.com/zshipko/ocaml-rs#getting-started resolves the issue with building on macOS, but I'm not super sure. Once it's in a building state, we should put it on the...

rust-interop

https://github.com/ocaml/setup-ocaml should make this quite straightforward.

ci

I think we can just get things to work if we use `--profile utop`?

ci

The default panic hook prints out a backtrace to stderr, which is the case even if we catch panics, which is unexpected (especially if we're catching the exception on the...

rust-interop

Given https://github.com/tizoc/ocaml-interop/issues/54#issuecomment-1712513068 it's probably fine to do so; one issue is we probably want the current panic-catching setup to be more configurable (or perhaps it's fine to remove it entirely...

rust-interop

Currently github action runners are spawned manually based off some scripts modified off of https://github.com/stgraber/lxd-github-actions. Every time we run out I need to spend a few minutes copying tokens and...

ci

Currently we return `(_, string) Result.` which is a bit difficult to deal with, both on the Rust and OCaml side; we probably want to expose the PolarsError as a...

Closes https://github.com/mt-caret/polars-ocaml/issues/2. Generated code coverage: https://mt-caret.github.io/polars-ocaml-kcov/kcov-merged/index.html Taking a quick look at the coverage information, it's already quite useful. For example, I didn't realize that we don't really execute the `Then`...

Raising OCaml exceptions from Rust code generally leaks memory since it skips dropping Rust values which are in scope. We instead `unwrap()` which will panic, unwind, and be caught at...