~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/t/schema.test

  • 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
#
 
2
# Just a couple of tests to make sure that schema works.
 
3
#
 
4
# Drop mysqltest1 database, as it can left from the previous tests.
 
5
#
 
6
 
 
7
--disable_warnings
 
8
drop database if exists mysqltest1;
 
9
--enable_warnings
 
10
 
 
11
create schema foo;
 
12
show create schema foo;
 
13
show schemas;
 
14
drop schema foo;