~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/errors.test

merge lp:~linuxjedi/drizzle/trunk-remove-drizzleadmin

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;