Skip to content

Commit

Permalink
Fix path for &[NaiveTime] in query! macro
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 authored and mehcode committed Nov 25, 2020
1 parent e8c073c commit 204a65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-macros/src/database/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl_database_ext! {
Vec<sqlx::types::Uuid> | &[sqlx::types::Uuid],

#[cfg(feature = "chrono")]
Vec<sqlx::types::chrono::NaiveTime> | &[sqlx::types::sqlx::types::chrono::NaiveTime],
Vec<sqlx::types::chrono::NaiveTime> | &[sqlx::types::chrono::NaiveTime],

#[cfg(feature = "chrono")]
Vec<sqlx::types::chrono::NaiveDate> | &[sqlx::types::chrono::NaiveDate],
Expand Down

0 comments on commit 204a65a

Please sign in to comment.