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 bbb69eb commit 54b04ffCopy full SHA for 54b04ff
sqlx-core/src/mssql/types/float.rs
@@ -13,7 +13,7 @@ impl Type<Mssql> for f32 {
13
}
14
15
fn compatible(ty: &MssqlTypeInfo) -> bool {
16
- matches!(ty.0.ty, DataType::Real | DataType::FloatN) && ty.0.size == 4
+ <f64 as Type<Mssql>>::compatible(ty)
17
18
19
tests/docker-compose.yml
@@ -220,9 +220,6 @@ services:
220
environment:
221
ACCEPT_EULA: "Y"
222
SA_PASSWORD: Password123!
223
- MSSQL_COLLATION: Chinese_PRC_CI_AS
224
- LANG: zh_CN.UTF-8
225
- LC_ALL: zh_CN.UTF-8
226
227
#
228
# IBM Db2
0 commit comments