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 c552ecd commit 27bd731Copy full SHA for 27bd731
sqlx-core/src/mssql/types/uint.rs
@@ -89,10 +89,7 @@ impl Type<Mssql> for u64 {
89
fn compatible(ty: &MssqlTypeInfo) -> bool {
90
matches!(
91
ty.0.ty,
92
- DataType::Numeric
93
- | DataType::NumericN
94
- | DataType::Decimal
95
- | DataType::DecimalN
+ DataType::Numeric | DataType::NumericN | DataType::Decimal | DataType::DecimalN
96
) && (ty.0.size == 0 || ty.0.size == 17)
97
}
98
0 commit comments