Adam Sindelar
Adam Sindelar
The Heroku CLI currently fails to install on M1 Macs, because the requisite tarball doesn't exist. `install.sh` can figure out that it needs to set OS to "darwin" and ARCH...
Exponential backoff is supposed to wait longer each successive time it's used. Instead, your implementation returns progressively _shorter_ intervals. For example, when used this way, NextBackoff will return first `500...
This patch series adds support for building the parquet2 Rust crate and using it, from C++, to write a parquet file.
I would like to add parquet output support to Santa, however there are some trade-offs that might not be acceptable to you. I'd like to have the discussion and the...
Following the documentation for [crate_universe](http://bazelbuild.github.io/rules_rust/crate_universe.html), you will get build errors similar to this one: ``` ERROR: Error computing the main repository mapping: no such package '@crate_index//': Not a regular file:...
I'm trying to use this crate to write a parquet file, which seems like the road less traveled. None of the examples in this codebase actually generate a row group....
I changed the function extract-attribute to always return a vector of values. Before this change, the function would check for the special case of exactly 1 value, in which case...
I don't think there is any way to get tinygo to produce a build of a package (e.g. for use as a WASM export) if you're using go modules. If...
I don't think this has been requested before, but I'd like to propose support for a trailing comma in SELECT. This is a convenience feature supported by some other dialects,...
Looks like `Arc` is in the "TBD" stage, as documented [here](https://docs.rs/cxx/latest/cxx/). @dtolnay, just wondering, have you learned of any reasons why it might be difficult to support? If the hope...