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
2937
February 19, 2016 02:35AM
1674
February 19, 2016 03:09AM
1624
February 19, 2016 06:53AM
1556
February 20, 2016 01:38AM
1299
August 24, 2016 03:48AM
1175
August 25, 2016 07:40PM
1323
August 30, 2016 09:33PM
1278
September 01, 2016 04:55PM
1230
September 01, 2016 11:40PM
1209
September 03, 2016 05:05PM
1211
September 05, 2016 01:20AM
1458
September 05, 2016 03:54PM
1122
September 08, 2016 04:04AM
1176
September 10, 2016 12:19AM
1474
February 23, 2016 11:29PM
Re: mysql online ddl still lock
2050
February 29, 2016 11:32PM
1658
March 05, 2016 12:19AM
1604
March 07, 2016 03:34AM
1571
March 31, 2016 02:32AM
1525
April 02, 2016 12:39AM
1544
May 13, 2016 02:44AM
1668
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.