~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: kalebral at gmail
  • Date: 2011-02-01 18:23:24 UTC
  • mto: (2132.1.7 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2134.
  • Revision ID: kalebral@gmail.com-20110201182324-moltu70jua09od11
remove error numbers in tests and use enum values only

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