We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c52ebad commit 56e95f6Copy full SHA for 56e95f6
tests/custom_types.rs
@@ -72,7 +72,7 @@ async fn custom_types_round_trip() {
72
73
// Try encoding an array to test type metadata lookup
74
let selected = select(vec![MyEnum::Foo, MyEnum::Bar].into_sql::<sql_types::Array<MyType>>())
75
- .get_result(connection)
+ .get_result::<Vec<MyEnum>>(connection)
76
.await
77
.unwrap();
78
assert_eq!(vec![MyEnum::Foo, MyEnum::Bar], selected);
0 commit comments