diff --git a/quaint/src/connector/postgres/native/mod.rs b/quaint/src/connector/postgres/native/mod.rs index 9c12d888895..9d2c9db59c2 100644 --- a/quaint/src/connector/postgres/native/mod.rs +++ b/quaint/src/connector/postgres/native/mod.rs @@ -423,7 +423,7 @@ impl PostgreSql { /// and returns `None` for all others. /// All credits go to sqlx: https://github.com/launchbadge/sqlx/blob/a892ebc6e283f443145f92bbc7fce4ae44547331/sqlx-postgres/src/connection/describe.rs#L482 async fn nullables_from_explain(&self, stmt: &Statement) -> Result>, Error> { - use explain::{Explain, Plan, visit_plan}; + use explain::{visit_plan, Explain, Plan}; let mut explain = format!("EXPLAIN (VERBOSE, FORMAT JSON) EXECUTE {}", stmt.name()); let params_len = stmt.params().len();