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 ab807ad commit c0f2921Copy full SHA for c0f2921
tests/custom_types.rs
@@ -70,7 +70,7 @@ async fn custom_types_round_trip() {
70
let connection = &mut connection().await;
71
72
// Try encoding an array to test type metadata lookup
73
- let selected = select([MyEnum::Foo, MyEnum::Bar].into_sql::<sql_types::Array<MyType>>())
+ let selected = select(vec![MyEnum::Foo, MyEnum::Bar].into_sql::<sql_types::Array<MyType>>())
74
.get_result(connection)
75
.await
76
.unwrap();
0 commit comments