mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
Adding support for vector of bytea type in postgres
This commit is contained in:
parent
c416c94d43
commit
ef42bd44bd
1 changed files with 1 additions and 0 deletions
|
@ -68,6 +68,7 @@ impl_database_ext! {
|
|||
|
||||
Vec<bool> | &[bool],
|
||||
Vec<String> | &[String],
|
||||
Vec<Vec<u8>> | &[Vec<u8>],
|
||||
Vec<i8> | &[i8],
|
||||
Vec<i16> | &[i16],
|
||||
Vec<i32> | &[i32],
|
||||
|
|
Loading…
Reference in a new issue