~drizzle-developers/drizzle/elliott-release

« back to all changes in this revision

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

  • Committer: Patrick Crews
  • Date: 2011-02-01 20:33:06 UTC
  • mfrom: (1845.2.288 drizzle)
  • Revision ID: gleebix@gmail.com-20110201203306-mwq2rk0it81tlwxh
Merged Trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE SCHEMA foo;
 
2
begin;
 
3
--error ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
 
4
alter schema foo collate = utf8_bin;
 
5
commit;
 
6
DROP SCHEMA foo;