~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/schema.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists mysqltest1;
 
2
create schema foo;
 
3
show create schema foo;
 
4
Database        Create Database
 
5
foo     CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
 
6
show schemas;
 
7
Database
 
8
information_schema
 
9
foo
 
10
mysql
 
11
test
 
12
drop schema foo;