Skip to content

Commit 1191867

Browse files
CommanderStormjrasanen
authored andcommitted
chore: fixed one usage of select_input_type!() being unhygenic (launchbadge#3327)
The `$crate::` is currently not nessesary, but future refactorings might get tripped up if the typo is not fixed
1 parent a7d2860 commit 1191867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-core/src/type_checking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ macro_rules! impl_type_checking {
146146
)*
147147
$(
148148
$(#[$meta])?
149-
_ if <$ty as sqlx_core::types::Type<$database>>::compatible(info) => Some(select_input_type!($ty $(, $input)?)),
149+
_ if <$ty as sqlx_core::types::Type<$database>>::compatible(info) => Some($crate::select_input_type!($ty $(, $input)?)),
150150
)*
151151
_ => None
152152
}

0 commit comments

Comments
 (0)