We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd63924 commit 891bd56Copy full SHA for 891bd56
1 file changed
sqlx-core/src/any/type.rs
@@ -9,7 +9,7 @@ macro_rules! impl_any_type {
9
impl crate::types::Type<crate::any::Any> for $ty {
10
fn type_info() -> crate::any::AnyTypeInfo {
11
panic!(
12
- "Type::type_info() is not implemented for Any because it is a dynamic driver and does not support compile-time type verification. (for type `{}`)",
+ "Type<Any>::type_info() is not implemented for {}. type_info should not be called on base types.",
13
std::any::type_name::<$ty>(),
14
);
15
}
0 commit comments