From ef42bd44bd1d64c727e2088b766faecef1309d64 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 4 Dec 2020 09:29:17 +0100 Subject: [PATCH] Adding support for vector of bytea type in postgres --- sqlx-macros/src/database/postgres.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlx-macros/src/database/postgres.rs b/sqlx-macros/src/database/postgres.rs index 8f819efa..35f621e6 100644 --- a/sqlx-macros/src/database/postgres.rs +++ b/sqlx-macros/src/database/postgres.rs @@ -68,6 +68,7 @@ impl_database_ext! { Vec | &[bool], Vec | &[String], + Vec> | &[Vec], Vec | &[i8], Vec | &[i16], Vec | &[i32],