Skip to content

Commit ac49cca

Browse files
committed
chore(mysql): map medium int to int, tinytext to varchar(255)
1 parent 8c82cc3 commit ac49cca

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/mysql/writer/column.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,12 @@ impl ColumnInfo {
7575
};
7676
col_def = self.write_num_attr(col_def, num_attr);
7777
}
78-
Type::MediumInt(_) => {
79-
// FIXME: Unresolved type mapping
80-
col_def.custom(self.col_type.clone());
78+
Type::MediumInt(num_attr) => {
79+
match num_attr.unsigned {
80+
Some(_) => col_def.big_unsigned(),
81+
None => col_def.big_integer(),
82+
};
83+
col_def = self.write_num_attr(col_def, num_attr);
8184
}
8285
Type::Int(num_attr) => {
8386
match num_attr.unsigned {
@@ -169,8 +172,9 @@ impl ColumnInfo {
169172
col_def = self.write_str_attr(col_def, str_attr);
170173
}
171174
Type::TinyText(_) => {
172-
// FIXME: Unresolved type mapping
173-
col_def.custom(self.col_type.clone());
175+
// map to varchar(255)
176+
col_def.string_len(255);
177+
col_def.extra(format!("CHARACTER SET {}", CharSet::Utf8.to_string()));
174178
}
175179
Type::MediumText(_) => {
176180
// FIXME: Unresolved type mapping

0 commit comments

Comments
 (0)