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 b7c341b commit 6c309d5Copy full SHA for 6c309d5
mysql_ch_replicator/converter.py
@@ -112,6 +112,8 @@ def convert_type(self, mysql_type):
112
return 'Float64'
113
if mysql_type.startswith('time'):
114
return 'String'
115
+ if 'varbinary' in mysql_type:
116
+ return 'String'
117
raise Exception(f'unknown mysql type "{mysql_type}"')
118
119
def convert_field_type(self, mysql_type, mysql_parameters):
0 commit comments