tison

Results 964 comments of tison

Here is a case where using `AsyncFnOnce` doesn't break compatibility - https://github.com/fast/mea/pull/84

@abonander Thanks for your feedback! That sounds reasonable. I'm trying to understand how we support chrono and how we make the feature flag. I saw the code below in `type_checking.rs`:...

@abonander as a workaround, is there something like `FromRow` on single type? I may have: ```rust #[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize, FromRow)] pub struct NodeInfo { pub node_group: String,...

For reference, here is a wrapper that can be used to bridge jiff's Timestamp to Postgres' TIMESTAMPTZ: ```rust use std::str::FromStr; use jiff::SignedDuration; use serde::Deserialize; use serde::Serialize; use sqlx::encode::IsNull; use sqlx::error::BoxDynError;...

> The sqlx chrono integration here might be buggy. See: Yeah. I report it at https://github.com/launchbadge/sqlx/issues/703#issuecomment-2359949473 but it seems missed.

> 2: Don't provide integration with jiff::Zoned. I'd support this option and this is how we're using it so far: store the timestamp and externally manage the timezone. As you...

I'm trying to manage this transaction state outside, but was blocked because `transaction_depth` and `queue_simple_query` is internal state. Even if I can manage `transaction_depth` by myself, without `queue_simple_query` I cannot...

There's no logic in the library to set different URLs. You can share more info, especially what the URL you configured is.

In addition, generally connected logged after retries. So it looks like you have multiple connections.

cc @CleverAkanoa since you're working on reconnection recently.