~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/errors.test

  • Committer: Brian Aker
  • Date: 2011-02-22 04:19:44 UTC
  • mto: (2192.1.1 drizzle-staging)
  • mto: This revision was merged to the branch mainline in revision 2193.
  • Revision ID: brian@tangent.org-20110222041944-furz1h252ecz7mpd
Merge in modifications such that we check both schema and table for
replication option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
select count(not_existing_database.t1) from t1;
19
19
--error ER_BAD_FIELD_ERROR
20
20
select count(not_existing_database.t1.a) from t1;
21
 
--error ER_DBACCESS_DENIED_ERROR, ER_TABLE_UNKNOWN
 
21
--error ER_DBACCESS_DENIED_ERROR, ER_TABLE_UNKNOWN,ER_SCHEMA_DOES_NOT_EXIST
22
22
select count(not_existing_database.t1.a) from not_existing_database.t1;
23
23
--error ER_BAD_FIELD_ERROR
24
24
select 1 from t1 order by 2;