1. The document discusses MySQL idiosyncrasies related to data integrity, transactions, and variable scope. It provides examples of unexpected behavior when the default storage engine is MyISAM rather than InnoDB, and the use of SQL modes to enforce data integrity.
2. Transactions examples show data is not rolled back as expected when tables are MyISAM rather than InnoDB.
3. Changing global variables like storage engine does not affect existing or new tables, demonstrating variable scope issues in MySQL.