mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
Fix: Cannot query Postgres INTERVAL[]
(#3566)
* fix(sqlx-postgres): macro could not understand pg interval array type * refactor(sqlx-postgres): move pg interval array types closer to other array types
This commit is contained in:
parent
3fb00e1403
commit
eac4b7aff7
@ -97,6 +97,7 @@ impl_type_checking!(
|
||||
Vec<f64> | &[f64],
|
||||
Vec<sqlx::postgres::types::Oid> | &[sqlx::postgres::types::Oid],
|
||||
Vec<sqlx::postgres::types::PgMoney> | &[sqlx::postgres::types::PgMoney],
|
||||
Vec<sqlx::postgres::types::PgInterval> | &[sqlx::postgres::types::PgInterval],
|
||||
|
||||
#[cfg(feature = "uuid")]
|
||||
Vec<sqlx::types::Uuid> | &[sqlx::types::Uuid],
|
||||
|
Loading…
x
Reference in New Issue
Block a user