~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_database.result

  • Committer: Stewart Smith
  • Date: 2009-06-05 12:04:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1053.
  • Revision ID: stewart@flamingspork.com-20090605120443-dn9ttgy0f1942cr8
Add code coverage for ALTER DATABASE

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create database foo;
 
2
show create database foo;
 
3
Database        Create Database
 
4
foo     CREATE DATABASE `foo`
 
5
alter database foo collate = utf8_bin;
 
6
show create database foo;
 
7
Database        Create Database
 
8
foo     CREATE DATABASE `foo`
 
9
alter database foo collate = utf8_esperanto_ci;
 
10
show create database foo;
 
11
Database        Create Database
 
12
foo     CREATE DATABASE `foo`
 
13
drop database foo;