~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/t/ctype_filename.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
drop table if exists con, aux, nul, lpt1, com1, `clock$`;
 
3
--enable_warnings
 
4
 
 
5
create table con (a int);
 
6
drop table con;
 
7
 
 
8
create table aux (a int);
 
9
drop table aux;
 
10
 
 
11
create table nul (a int);
 
12
drop table nul;
 
13
 
 
14
create table lpt1 (a int);
 
15
drop table lpt1;
 
16
 
 
17
create table com1 (a int);
 
18
drop table com1;
 
19
 
 
20
create table `clock$` (a int);
 
21
drop table `clock$`;