We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff1643 commit b87af1bCopy full SHA for b87af1b
mysql2pgsql/lib/mysql_reader.py
@@ -98,7 +98,7 @@ def _convert_type(self, data_type):
98
return 'boolean'
99
elif re.search(r'^smallint.* unsigned', data_type) or data_type.startswith('mediumint'):
100
return 'integer'
101
- elif data_type.startswith('smallint') or data_type.startswith('binary('):
+ elif data_type.startswith('smallint'):
102
return 'tinyint'
103
elif data_type.startswith('tinyint') or data_type.startswith('year('):
104
0 commit comments