~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/tests/t/basic.test

  • Committer: Brian Aker
  • Date: 2011-02-01 20:31:20 UTC
  • mfrom: (2133.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110201203120-vmp2abdbjjaua218
Merge in all of the error cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
engine=MEMORY;
52
52
insert into t1 values (1,1),(2,2),(1,3),(2,4),(2,5),(2,6);
53
53
select * from t1 where x=1;
 
54
--error ER_CANT_REOPEN_TABLE
54
55
select * from t1,t1 as t2 where t1.x=t2.y;
 
56
--error ER_CANT_REOPEN_TABLE
55
57
explain select * from t1,t1 as t2 where t1.x=t2.y;
56
58
drop table t1;
57
59