From 829f37793ab2f40287180fedfce353c4894c5cdb Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Wed, 18 Mar 2020 22:11:02 -0700 Subject: [PATCH] Re-export PgRecordEncoder and PgRecordDecoder --- sqlx-core/src/postgres/types/raw/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlx-core/src/postgres/types/raw/mod.rs b/sqlx-core/src/postgres/types/raw/mod.rs index 101fb0bc..79f22768 100644 --- a/sqlx-core/src/postgres/types/raw/mod.rs +++ b/sqlx-core/src/postgres/types/raw/mod.rs @@ -2,3 +2,4 @@ mod numeric; mod record; pub use numeric::{PgNumeric, PgNumericSign}; +pub use record::{PgRecordEncoder, PgRecordDecoder};