~drizzle-trunk/drizzle/development

1890.2.40 by Stewart Smith
error out on RENAME TABLE inside a transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
1
CREATE TABLE t1 (a int);
2
begin;
1890.2.53 by Stewart Smith
merge trunk
3
--error ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
1890.2.40 by Stewart Smith
error out on RENAME TABLE inside a transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
4
RENAME TABLE t1 to t2;
5
commit;
6
DROP TABLE IF EXISTS t1,t2;