Skip to content

Commit e544ddc

Browse files
committed
Bump for mysql-common
1 parent 248e15e commit e544ddc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "msql-srv"
3-
version = "0.8.5"
3+
version = "0.8.6"
44
edition = "2018"
55

66
description = "Bindings for emulating a MySQL/MariaDB server"
@@ -24,13 +24,13 @@ maintenance = { status = "experimental" }
2424

2525
[dependencies]
2626
nom = "5.0.0"
27-
mysql_common = "0.17"
27+
mysql_common = "0.19"
2828
byteorder = "1"
2929
chrono = "0.4"
3030

3131
[dev-dependencies]
3232
postgres = "0.15.2"
33-
mysql = "16.0.0"
33+
mysql = "17.0.0"
3434
mysql_async = "0.20.0"
3535
slab = "0.4.2"
3636
tokio = "0.1.19"

tests/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ fn prepared_nulls() {
788788
assert!(!params[1].value.is_null());
789789
assert_eq!(
790790
params[0].coltype,
791-
myc::constants::ColumnType::MYSQL_TYPE_SHORT
791+
myc::constants::ColumnType::MYSQL_TYPE_NULL
792792
);
793793
// rust-mysql sends all numbers as LONGLONG :'(
794794
assert_eq!(

0 commit comments

Comments
 (0)