~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/docs/index.rst

  • Committer: Monty Taylor
  • Date: 2010-06-02 22:35:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1586.
  • Revision ID: mordred@inaugust.com-20100602223545-q8ekf9b40a85nwuf
Rearragned unittests into a single exe because of how we need to link it
(thanks lifeless)
Link with server symbols without needing to build a library.
Added an additional atomics test which tests whatever version of the atomics
lib the running platform would actually use.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Innobase
2
 
========
3
 
 
4
 
The Innobase plugin provides the InnoDB storage engine. It is almost identical
5
 
to the innodb_plugin, but adapted to Drizzle. We plan to move to having InnoDB
6
 
provided by the HailDB plugin, which will allow for easier maintenance and
7
 
upgrades.
8
 
 
9
 
InnoDB is the default storage engine for Drizzle. It is a fully transactional
10
 
MVCC storage engine.
11
 
 
12
 
innodb_plugin origins
13
 
---------------------
14
 
 
15
 
We maintain the Innobase plugin in Drizzle as a downstream project of the
16
 
innodb_plugin for MySQL. We try and keep it up to date with innodb_plugin
17
 
releases.
18
 
 
19
 
Differences from innodb_plugin
20
 
------------------------------
21
 
 
22
 
 * AUTO_INCREMENT behaves the standard way (as in MyISAM)
23
 
 * Supports four byte UTF-8 with the same index size
24
 
 
25
 
Compatibility with MySQL
26
 
------------------------
27
 
 
28
 
Although the innobase plugin is near identical to the innodb_plugin in MySQL,
29
 
the on disk formats are slightly incompatible (to allow for the same index
30
 
length for the four byte UTF-8 that Drizzle supports) and the table definitions
31
 
(FRM for MySQL, .dfe for Drizzle) are completely different. This means that you
32
 
cannot directly share InnoDB tablespaces between MySQL and Drizzle. Use the
33
 
drizzledump tool to migrate data from MySQL to Drizzle.