1890.2.44
by Stewart Smith
error out on ALTER SCHEMA inside a transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED. Previously this would be ER_LOCK_OR_ACTIVE_TRANSACTION which isn't exactly correct or consistent with others. |
1 |
CREATE SCHEMA foo;
|
2 |
begin;
|
|
1890.2.53
by Stewart Smith
merge trunk |
3 |
--error ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
|
1890.2.44
by Stewart Smith
error out on ALTER SCHEMA inside a transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED. Previously this would be ER_LOCK_OR_ACTIVE_TRANSACTION which isn't exactly correct or consistent with others. |
4 |
alter schema foo collate = utf8_bin;
|
5 |
commit;
|
|
6 |
DROP SCHEMA foo;
|