@@ -323,17 +323,17 @@ execute stmt4;
323323Engine Support Comment
324324MyISAM YES/NO Default engine as of MySQL 3.23 with great performance
325325MEMORY YES/NO Hash based, stored in memory, useful for temporary tables
326- MRG_MYISAM YES/NO Collection of identical MyISAM tables
327- ISAM YES/NO Obsolete storage engine, now replaced by MyISAM
328- MRG_ISAM YES/NO Obsolete storage engine, now replaced by MERGE
329326InnoDB YES/NO Supports transactions, row-level locking, and foreign keys
330- BERKELEYDB YES/NO Supports transactions and page-level locking
331- NDBCLUSTER YES/NO Clustered, fault-tolerant, memory-based tables
327+ BerkeleyDB YES/NO Supports transactions and page-level locking
328+ BLACKHOLE YES/NO /dev/null storage engine (anything you write to it disappears)
332329EXAMPLE YES/NO Example storage engine
333330ARCHIVE YES/NO Archive storage engine
334331CSV YES/NO CSV storage engine
332+ ndbcluster YES/NO Clustered, fault-tolerant, memory-based tables
335333FEDERATED YES/NO Federated MySQL storage engine
336- BLACKHOLE YES/NO /dev/null storage engine (anything you write to it disappears)
334+ MRG_MYISAM YES/NO Collection of identical MyISAM tables
335+ binlog YES/NO This is a meta storage engine to represent the binlog in a transaction
336+ ISAM YES/NO Obsolete storage engine
337337drop table if exists t5;
338338prepare stmt1 from ' drop table if exists t5 ' ;
339339execute stmt1 ;
0 commit comments