~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.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:
436
436
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
437
437
show create table t1;
438
438
drop table t1;
 
439
--error ER_BAD_FIELD_ERROR
439
440
create table t1 select _latin1"test" union select _latin1"testt" ;
 
441
--error ER_BAD_FIELD_ERROR
440
442
create table t1 select _utf8"test" union select _utf8"testt" ;
441
443
create table t1 select "test" union select "testt" ;
442
444
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/