Xavier Lange
Xavier Lange
I am converting postgres-stored data in to a parquet file and I am going to deal with a sparse list of strings. How do I use the column writer to...
I am retrieving data from a postgres database with diesel. The table's schema is tagged with a `Numeric` meta-type, which I deserializing in to BigDecimal: ``` // diesel table definition...
I'm starting to "prometheus all the things" in our rails application. They have support for ruby garbage collector, rails, puma, activerecord, etc, would this project be open to support on...
I am trying to stream gzipped data from an S3 object in to a flate2 decompressor but the S3 library does not return a Read, just a futures Stream. You...
I need the registry_ids parameters on the ECR GetAuthorizationTokenRequest. Currently https://github.com/rusoto/rusoto/blame/master/rusoto/services/ecr/src/generated.rs#L516 ``` #[derive(Clone, Debug, Default, PartialEq, Serialize)] #[cfg_attr(feature = "deserialize_structs", derive(Deserialize))] pub struct GetAuthorizationTokenRequest {} ``` But what worked 15...
I love the optional `json()` feature, my HTTP code looks super tidy: ```rust let response = self .sheets .reqwest .post(url) .json(&self.value_range) .bearer_auth(self.sheets.oauth2_token) .send() .await?; ``` but I imagine I'm going...
Contributes an implementation towards https://github.com/kube-rs/kube-rs/issues/485 ## Motivation Simply providing Object API support for Lease is not sufficient, we can provide a general Lease handle that periodically renews a Lease while...
I am dealing with some view code I do not control, trying to parse this gem: ``` SELECT "array_agg"("status") FILTER (WHERE ("badge_type" = 'AW'))[1] "aw_badge" FROM some_table ``` which is...
We author many charts and make many releases. Sometimes we screw up and overwrite an existing release by running a `helm install` with the name of an existing release that's...
**Is your feature request related to a problem? Please describe.** I cannot perform range queries on JSON fields. For example, the `examples/json_field.rs` has a search like so: ``` { let...