diff options
author | acurtis@poseidon.ndb.mysql.com <> | 2005-11-07 16:25:06 +0100 |
---|---|---|
committer | acurtis@poseidon.ndb.mysql.com <> | 2005-11-07 16:25:06 +0100 |
commit | c01a3b5e5f3c28333384ff962f44afea3a1b4dda (patch) | |
tree | 2b8ffe29d899326e4ad244ac3f67d4fcf29bfae6 /mysql-test/r/ps_1general.result | |
parent | eed744d30b90da5baa9d9ee2d126341dd63f9d3d (diff) | |
download | mariadb-git-c01a3b5e5f3c28333384ff962f44afea3a1b4dda.tar.gz |
Make storage engines "pluggable", handlerton work
Diffstat (limited to 'mysql-test/r/ps_1general.result')
-rw-r--r-- | mysql-test/r/ps_1general.result | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/r/ps_1general.result b/mysql-test/r/ps_1general.result index de6f995dd6c..756772c16a5 100644 --- a/mysql-test/r/ps_1general.result +++ b/mysql-test/r/ps_1general.result @@ -320,21 +320,6 @@ prepare stmt4 from ' show errors limit 20 '; ERROR HY000: This command is not supported in the prepared statement protocol yet prepare stmt4 from ' show storage engines '; execute stmt4; -Engine Support Comment -MyISAM YES/NO Default engine as of MySQL 3.23 with great performance -MEMORY YES/NO Hash based, stored in memory, useful for temporary tables -InnoDB YES/NO Supports transactions, row-level locking, and foreign keys -BerkeleyDB YES/NO Supports transactions and page-level locking -BLACKHOLE YES/NO /dev/null storage engine (anything you write to it disappears) -EXAMPLE YES/NO Example storage engine -ARCHIVE YES/NO Archive storage engine -CSV YES/NO CSV storage engine -ndbcluster YES/NO Clustered, fault-tolerant, memory-based tables -FEDERATED YES/NO Federated MySQL storage engine -MRG_MYISAM YES/NO Collection of identical MyISAM tables -binlog YES/NO This is a meta storage engine to represent the binlog in a transaction -ISAM YES/NO Obsolete storage engine -partition YES/NO Partition engine drop table if exists t5; prepare stmt1 from ' drop table if exists t5 ' ; execute stmt1 ; |