~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/ddl_transactions/r/create_index.result

Merge Stewart - Fix bug 664222: DDL operations have an implicit commit
Merge Stewart - Fix bug #695201: autocommit=1 not resetting session->server_status properly when committing ongoing txn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (a int);
 
2
BEGIN;
 
3
CREATE INDEX foo on t1 (a);
 
4
ERROR HY000: Transactional DDL not supported
 
5
COMMIT;
 
6
DROP TABLE t1;