Will Eaton
Will Eaton
Would love to see this (specifically an arrow2 feature flag), could consolidate a lot of my custom code around parquet partitioning and writing to object storage + gain the benefits...
I seem to have something _workable_ using a combination of `lazy_static!` + `Mutex` to keep track of a global context, which allows the filter function to remain "pure" in it's...
@mitsuhiko your suggestion looks great to me, I could then just create a `QueryContext` struct for book keeping the fields I need. Right now I'm using ```rust ref_thread_local! { static...
@mitsuhiko sounds good. I'll keep iterating on my library w/ the thread local approach and follow along here for any API updates.
@clux that makes sense, maybe I didn't specify the question properly, I understand you can pass in a namespaced API, but I'm trying to avoid creating a bunch of namespaced...
> If you want to control which NSes you watch at runtime then it gets a bit trickier.. it should still technically be possible, but you'd probably need to use...
Noted, I think that makes sense and I have what I need to proceed with this. Btw, this description of `applier` is great :grin: > This is the “hard-mode” version...
@callado4 I don't have access to an M1 Mac machine to do builds on, would happily add support for this if it could be done via github actions, but I...
Actually sorry, looks like you are requesting just a different target linux architecture and not an actual M1 native build since you are running via docker on darwin. I think...
@mdeakyne, the underlying library that connects to oracle is `oracle-rs`, here are the docs, I'm wondering if the feature you are asking about is: https://docs.rs/oracle/0.5.3/oracle/struct.Connector.html#method.external_auth If so, some code could...