~skinny.moey/drizzle/branch-rev

« back to all changes in this revision

Viewing changes to mysql-test/t/lowercase_mixed_tmpdir.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
--source include/have_case_sensitive_file_system.inc
 
2
--source include/have_lowercase1.inc
 
3
 
 
4
--disable_warnings
 
5
drop table if exists t1;
 
6
--enable_warnings
 
7
 
 
8
create table t1 (id int) engine=myisam;
 
9
insert into t1 values (1);
 
10
create temporary table t2 select * from t1;
 
11
drop temporary table t2;
 
12
drop table t1;