Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue: Specified key was too long; max key length is 3072 bytes #357

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions create_table.sql
Original file line number Diff line number Diff line change
@@ -89,8 +89,8 @@ CREATE TABLE IF NOT EXISTS `recover_config`
CREATE TABLE IF NOT EXISTS `multi_cluster_sync_info`
(
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`data_center` varchar(512) NOT NULL COMMENT '集群名称',
`remote_data_center` varchar(512) NOT NULL COMMENT '同步的集群名称',
`data_center` varchar(255) NOT NULL COMMENT '集群名称',
`remote_data_center` varchar(255) NOT NULL COMMENT '同步的集群名称',
`remote_meta_address` varchar(1024) NOT NULL COMMENT '同步的集群地址',
`enable_sync_datum` varchar(16) NOT NULL COMMENT 'datum同步的开关是否开启',
`enable_push` varchar(16) NOT NULL COMMENT '同步的数据是否允许推送',