From 204a65a464e44c6e47eff63edad79817367d326f Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 22 Nov 2020 16:49:08 +0100 Subject: [PATCH] Fix path for &[NaiveTime] in query! macro --- sqlx-macros/src/database/postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-macros/src/database/postgres.rs b/sqlx-macros/src/database/postgres.rs index 049d3964..8f819efa 100644 --- a/sqlx-macros/src/database/postgres.rs +++ b/sqlx-macros/src/database/postgres.rs @@ -80,7 +80,7 @@ impl_database_ext! { Vec | &[sqlx::types::Uuid], #[cfg(feature = "chrono")] - Vec | &[sqlx::types::sqlx::types::chrono::NaiveTime], + Vec | &[sqlx::types::chrono::NaiveTime], #[cfg(feature = "chrono")] Vec | &[sqlx::types::chrono::NaiveDate],