~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/ddl_transactions/t/rename_table.test

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
--error ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
 
4
RENAME TABLE t1 to t2;
 
5
commit;
 
6
DROP TABLE IF EXISTS t1,t2;