MySQL Forums
Forum List  »  InnoDB

Re: mysql online ddl still lock
Posted by: hua kai
Date: February 29, 2016 11:32PM

Hi, Rick, Here is one table schema

CREATE TABLE `zm_meeting` (
`meeting_id` varchar(36) NOT NULL,
`host_id` varchar(36) NOT NULL,
`meeting_number` bigint(10) NOT NULL ,
`status` tinyint(4) NOT NULL,
`topic` varchar(200) NOT NULL,
`password` varchar(64) DEFAULT NULL,
`agenda` varchar(2000) DEFAULT NULL,
`options` bigint(10) NOT NULL,
`type` tinyint(4) DEFAULT '0',
`created_by` tinyint(4) DEFAULT '0' ,
`start_time` datetime DEFAULT NULL ,
`end_time` datetime DEFAULT NULL ,
`schedule_time` datetime DEFAULT NULL ,
`duration` int(10) DEFAULT '0' ,
`repeat_type` tinyint(4) DEFAULT '0',
`repeat_end_time` datetime DEFAULT NULL,
`timezone` varchar(256) DEFAULT NULL ,
`minutes` int(10) DEFAULT '0' ,
`attendees` int(10) DEFAULT '0' ,
`attendees_viewonly` int(10) DEFAULT '0',
`total_minutes` int(10) DEFAULT '0' ,
`total_minutes_viewonly` int(10) DEFAULT '0',
`attendee_list` text ,
`session_list` varchar(64) DEFAULT NULL ,
`phone_id` int(10) DEFAULT NULL ,
`callin_number` varchar(256) DEFAULT NULL ,
`ping_zc` varchar(4000) DEFAULT NULL,
`host_zc` varchar(256) DEFAULT NULL,
`host_zone` varchar(64) DEFAULT NULL ,
`top_mmr` varchar(256) DEFAULT NULL,
`email_reminder` tinyint(4) DEFAULT '0' ,
`assistant_id` varchar(36) DEFAULT NULL ,
`crc_meeting` tinyint(4) DEFAULT '0' ,
`ping_bc` varchar(4000) DEFAULT NULL ,
`panelist_key` varchar(36) DEFAULT NULL,
`create_time` datetime NOT NULL,
`modify_time` datetime NOT NULL,
PRIMARY KEY (`meeting_id`),
UNIQUE KEY `meeting_number` (`meeting_number`),
KEY `start_time` (`start_time`),
KEY `modify_time` (`modify_time`),
KEY `host_zone` (`host_zone`),
KEY `top_mmr` (`top_mmr`(64)),
KEY `host_id` (`host_id`),
KEY `assistant_id` (`assistant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

Options: ReplyQuote


Subject
Views
Written By
Posted
2748
February 19, 2016 02:35AM
1617
February 19, 2016 03:09AM
1575
February 19, 2016 06:53AM
1515
February 20, 2016 01:38AM
1252
August 24, 2016 03:48AM
1115
August 25, 2016 07:40PM
1279
August 30, 2016 09:33PM
1229
September 01, 2016 04:55PM
1177
September 01, 2016 11:40PM
1171
September 03, 2016 05:05PM
1167
September 05, 2016 01:20AM
1333
September 05, 2016 03:54PM
1073
September 08, 2016 04:04AM
1136
September 10, 2016 12:19AM
1436
February 23, 2016 11:29PM
Re: mysql online ddl still lock
1916
February 29, 2016 11:32PM
1611
March 05, 2016 12:19AM
1551
March 07, 2016 03:34AM
1522
March 31, 2016 02:32AM
1477
April 02, 2016 12:39AM
1499
May 13, 2016 02:44AM
1527
May 24, 2016 09:53AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.