~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/lowercase_table3.result

  • 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
DROP TABLE IF EXISTS t1,T1;
 
2
CREATE TABLE t1 (a int);
 
3
SELECT * from T1;
 
4
a
 
5
drop table t1;
 
6
flush tables;
 
7
CREATE TABLE bug29839 (a int) ENGINE=INNODB;
 
8
SELECT * from BUG29839;
 
9
ERROR 42S02: Table 'test.BUG29839' doesn't exist
 
10
drop table bug29839;