~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
(FRM for MySQL, .dfe for Drizzle) are completely different. This means that you
46
46
cannot directly share InnoDB tablespaces between MySQL and Drizzle. Use the
47
47
drizzledump tool to migrate data from MySQL to Drizzle.
 
48
 
 
49
InnoDB Transaction Log
 
50
----------------------
 
51
 
 
52
The Innobase plugin provides a mechanism to store replication events in an
 
53
InnoDB table. When enabled, this transaction log can be accessed through
 
54
the SYS_REPLICATION_LOG and INNODB_REPLICATION_LOG tables in the DATA_DICTIONARY
 
55
schema.
 
56
 
 
57
To enable this transaction log, you must start the server with:
 
58
 
 
59
   **--innodb.replication-log=true**
 
60
 
 
61
It is not enabled by default.