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 eb6cfeb commit 6233ad3Copy full SHA for 6233ad3
mysql_ch_replicator/converter.py
@@ -83,6 +83,8 @@ def convert_type(self, mysql_type):
83
return 'Bool'
84
if mysql_type == 'smallint':
85
return 'Int16'
86
+ if 'tinyint' in mysql_type:
87
+ return 'Int16'
88
if 'datetime' in mysql_type:
89
return mysql_type.replace('datetime', 'DateTime64')
90
if 'longtext' in mysql_type:
0 commit comments