~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/transactional.rst

  • Committer: Stewart Smith
  • Date: 2010-12-29 04:25:21 UTC
  • mto: (2099.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2100.
  • Revision ID: stewart@flamingspork.com-20101229042521-tgpfrsqluiypfy7a
update docs on Transactional DDL support

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
If you set AUTOCOMMIT=1 during a transaction, that transaction will be committed as part of the SET AUTOCOMMIT=1 statement.
25
25
 
 
26
Transactional DDL is currently not supported, although it may be in the future. This means that although currently you will get a ER_TRANSACTION_DDL_NOT_SUPPORTED error message if you try and execute DDL statements within a transaction, in future versions of Drizzle they may succeed.
 
27
 
26
28
Currently DDL operations are performed as a single transaction, this limitation will be lifted in the future.
27
29
 
28
30