~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/t/db_create_if_not_exists.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-05-11 18:47:32 UTC
  • mto: (2.1.2 sid) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100511184732-jhn055kfhxze24kt
Tags: upstream-5.1.46
ImportĀ upstreamĀ versionĀ 5.1.46

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
DROP DATABASE IF EXISTS d2;
 
3
--enable_warnings
 
4
CREATE DATABASE d2;
 
5
CREATE DATABASE IF NOT EXISTS d2;
 
6
SHOW DATABASES;
 
7
USE d2;
 
8
DROP DATABASE d2;
 
9
DROP DATABASE IF EXISTS d2;
 
10
CREATE SCHEMA d2;
 
11
CREATE SCHEMA IF NOT EXISTS d2;
 
12
SHOW DATABASES;
 
13
USE d2;
 
14
DROP SCHEMA d2;
 
15
DROP SCHEMA IF EXISTS d2;
 
16