~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

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