~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.test

  • Committer: Brian Aker
  • Date: 2011-01-24 04:22:18 UTC
  • mto: This revision was merged to the branch mainline in revision 2108.
  • Revision ID: brian@tangent.org-20110124042218-ndj2bd02zf3ve3ng
Add in all of the error messages, also remove all cases of --error number
from main tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
--replace_column 9 #
40
40
explain select a,b from t1 union all select a,b from t2;
41
41
 
42
 
--error  1054
 
42
--error ER_BAD_FIELD_ERROR
43
43
explain select xx from t1 union select 1;
44
44
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
45
45
explain select a,b from t1 union select 1;