-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
I have a table:
--- processing statement:
CREATE TABLE `test` (
`id` bigint NOT NULL AUTO_INCREMENT,
`final` bit(1) NOT NULL,
`coordinate` point DEFAULT NULL,
`external_id` binary(16) NOT NULL,
PRIMARY KEY (`id`),
) ENGINE=InnoDB AUTO_INCREMENT=2906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci This results in exceptions:
File "/.direnv/python-3.11.2/lib/python3.11/site-packages/mysql_ch_replicator/converter.py", line 140, in convert_type
raise Exception(f'unknown mysql type "{mysql_type}"')
Exception: unknown mysql type "bit(1)"
and
File "/.direnv/python-3.11.2/lib/python3.11/site-packages/mysql_ch_replicator/converter.py", line 140, in convert_type
raise Exception(f'unknown mysql type "{mysql_type}"')
Exception: unknown mysql type "point"
and
File "/.direnv/python-3.11.2/lib/python3.11/site-packages/mysql_ch_replicator/converter.py", line 140, in convert_type
raise Exception(f'unknown mysql type "{mysql_type}"')
Exception: unknown mysql type "binary(16)"
bakwc
Metadata
Metadata
Assignees
Labels
No labels