~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drizzlecheck.result

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
2
 
drop database if exists client_test_db;
3
 
create table `t``1`(a int);
4
 
create table `t 1`(a int);
5
 
test.t 1                                           OK
6
 
test.t`1                                           OK
7
 
drop table `t``1`, `t 1`;
8
 
End of 5.0 tests