Skip to content

Commit

Permalink
chore: fixed one usage of select_input_type!() being unhygenic (#3327)
Browse files Browse the repository at this point in the history
The `$crate::` is currently not nessesary, but future refactorings might get tripped up if the typo is not fixed
  • Loading branch information
CommanderStorm authored Jul 16, 2024
1 parent f2f17a7 commit 3396ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-core/src/type_checking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ macro_rules! impl_type_checking {
)*
$(
$(#[$meta])?
_ if <$ty as sqlx_core::types::Type<$database>>::compatible(info) => Some(select_input_type!($ty $(, $input)?)),
_ if <$ty as sqlx_core::types::Type<$database>>::compatible(info) => Some($crate::select_input_type!($ty $(, $input)?)),
)*
_ => None
}
Expand Down

0 comments on commit 3396ed0

Please sign in to comment.