Skip to content

Commit

Permalink
Merge pull request #210 from weiznich/update_mysql_0_35
Browse files Browse the repository at this point in the history
Update mysql deps
  • Loading branch information
weiznich authored Jan 17, 2025
2 parents c757675 + c6ec681 commit 1c36b65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ futures-util = { version = "0.3.17", default-features = false, features = [
] }
tokio-postgres = { version = "0.7.10", optional = true }
tokio = { version = "1.26", optional = true }
mysql_async = { version = "0.34", optional = true, default-features = false, features = [
mysql_async = { version = "0.35", optional = true, default-features = false, features = [
"minimal-rust",
] }
mysql_common = { version = "0.32", optional = true, default-features = false }
mysql_common = { version = "0.34", optional = true, default-features = false }

bb8 = { version = "0.9", optional = true }
async-trait = { version = "0.1.66", optional = true }
Expand Down
1 change: 1 addition & 0 deletions src/mysql/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ fn convert_type(column_type: ColumnType, column_flags: ColumnFlags) -> MysqlType
| ColumnType::MYSQL_TYPE_UNKNOWN
| ColumnType::MYSQL_TYPE_ENUM
| ColumnType::MYSQL_TYPE_SET
| ColumnType::MYSQL_TYPE_VECTOR
| ColumnType::MYSQL_TYPE_GEOMETRY => {
unimplemented!("Hit an unsupported type: {:?}", column_type)
}
Expand Down

0 comments on commit 1c36b65

Please sign in to comment.