File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,12 @@ impl ColumnInfo {
75
75
} ;
76
76
col_def = self . write_num_attr ( col_def, num_attr) ;
77
77
}
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) ;
81
84
}
82
85
Type :: Int ( num_attr) => {
83
86
match num_attr. unsigned {
@@ -169,8 +172,9 @@ impl ColumnInfo {
169
172
col_def = self . write_str_attr ( col_def, str_attr) ;
170
173
}
171
174
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( ) ) ) ;
174
178
}
175
179
Type :: MediumText ( _) => {
176
180
// FIXME: Unresolved type mapping
You can’t perform that action at this time.
0 commit comments