Skip to content

Commit 8e5224e

Browse files
committed
feat: add support MYSQL_TYPE_VARCHAR
1 parent 67d568c commit 8e5224e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

connectorx/src/sources/mysql/typesystem.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ impl<'a> From<(&'a ColumnType, &'a ColumnFlags)> for MySQLTypeSystem {
115115
ColumnType::MYSQL_TYPE_MEDIUM_BLOB => MediumBlob(null_ok),
116116
ColumnType::MYSQL_TYPE_LONG_BLOB => LongBlob(null_ok),
117117
ColumnType::MYSQL_TYPE_JSON => Json(null_ok),
118+
ColumnType::MYSQL_TYPE_VARCHAR => VarChar(null_ok),
118119
_ => unimplemented!("{}", format!("{:?}", ty)),
119120
}
120121
}

0 commit comments

Comments
 (0)