↧
Answer by RolandoMySQLDBA for Transactional DDL workflow for MySQL
For many people, the MySQL Achilles' heel is implicit commit.According to Page 418 Paragraph 3 of the Bookthe following commands can and will break a transactionALTER TABLEBEGINCREATE INDEXDROP...
View ArticleAnswer by phil_w for Transactional DDL workflow for MySQL
If you talk about continuous integration then I assume it's a development environment. In that case I would say the person doing structural changes has to test them to ensure not to break things for...
View ArticleTransactional DDL workflow for MySQL
I was a little surprised to discover that DDL statements (alter table, create index etc) implicitly commit the current transaction in MySQL. Coming from MS SQL Server, the ability to do database...
View Article