Skip to content

Commit 113d410

Browse files
authored
fix fromsql for domains
1 parent 6ae17e0 commit 113d410

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

postgres-derive/src/fromsql.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,10 @@ fn domain_accepts_body(name: &str, field: &syn::Field) -> TokenStream {
179179
fn domain_body(ident: &Ident, field: &syn::Field) -> TokenStream {
180180
let ty = &field.ty;
181181
quote! {
182-
<#ty as postgres_types::FromSql>::from_sql(_type, buf).map(#ident)
182+
<#ty as postgres_types::FromSql>::from_sql(match *_type.kind() {
183+
postgres_types::Kind::Domain(ref _type) => _type,
184+
_ => _type
185+
}, buf).map(#ident)
183186
}
184187
}
185188

0 commit comments

Comments
 (0)