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 64f62ab commit 55b5735Copy full SHA for 55b5735
mysql_ch_replicator/converter.py
@@ -102,6 +102,14 @@ def convert_type(self, mysql_type):
102
return 'String'
103
if 'decimal' in mysql_type:
104
return 'Float64'
105
+ if 'float' in mysql_type:
106
+ return 'Float32'
107
+ if 'double' in mysql_type:
108
+ return 'Float64'
109
+ if 'integer' in mysql_type:
110
+ return 'Int32'
111
+ if 'real' in mysql_type:
112
113
if mysql_type.startswith('time'):
114
115
raise Exception(f'unknown mysql type "{mysql_type}"')
0 commit comments