Skip to content

Commit 1c36b65

Browse files
authored
Merge pull request #210 from weiznich/update_mysql_0_35
Update mysql deps
2 parents c757675 + c6ec681 commit 1c36b65

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ futures-util = { version = "0.3.17", default-features = false, features = [
2323
] }
2424
tokio-postgres = { version = "0.7.10", optional = true }
2525
tokio = { version = "1.26", optional = true }
26-
mysql_async = { version = "0.34", optional = true, default-features = false, features = [
26+
mysql_async = { version = "0.35", optional = true, default-features = false, features = [
2727
"minimal-rust",
2828
] }
29-
mysql_common = { version = "0.32", optional = true, default-features = false }
29+
mysql_common = { version = "0.34", optional = true, default-features = false }
3030

3131
bb8 = { version = "0.9", optional = true }
3232
async-trait = { version = "0.1.66", optional = true }

src/mysql/row.rs

+1
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ fn convert_type(column_type: ColumnType, column_flags: ColumnFlags) -> MysqlType
229229
| ColumnType::MYSQL_TYPE_UNKNOWN
230230
| ColumnType::MYSQL_TYPE_ENUM
231231
| ColumnType::MYSQL_TYPE_SET
232+
| ColumnType::MYSQL_TYPE_VECTOR
232233
| ColumnType::MYSQL_TYPE_GEOMETRY => {
233234
unimplemented!("Hit an unsupported type: {:?}", column_type)
234235
}

0 commit comments

Comments
 (0)