diff --git a/crates/pg/src/lib.rs b/crates/pg/src/lib.rs index bceb03e9..5dd404f5 100644 --- a/crates/pg/src/lib.rs +++ b/crates/pg/src/lib.rs @@ -65,9 +65,9 @@ mod tests { } } -pub type DynConnPool = Arc; +pub type DynConnPool = Arc; -pub type DynDBConn = Arc; +pub type DynDBConn = Arc; #[async_trait] pub trait DBConnPoolTrait { @@ -112,7 +112,7 @@ impl AccountStore for DatabaseConnection { ¶ms[..], ) .await; - + match rows { Err(rows) => Err(Box::new(rows)), Ok(rows) => {