~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to tests/r/show_check.result

  • Committer: Brian Aker
  • Date: 2010-10-14 18:58:48 UTC
  • mto: This revision was merged to the branch mainline in revision 1854.
  • Revision ID: brian@tangent.org-20101014185848-3alpd72oxyfpornx
This cleans up error messages to state "schema" instead of database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
470
470
) ENGINE=DEFAULT COLLATE = utf8_general_ci
471
471
DROP TABLE t1;
472
472
SHOW TABLES FROM non_existing_database;
473
 
ERROR 42000: Unknown database 'non_existing_database'
 
473
ERROR 42000: Unknown schema 'non_existing_database'
474
474
End of 4.1 tests
475
475
SHOW TABLES FROM no_such_database;
476
 
ERROR 42000: Unknown database 'no_such_database'
 
476
ERROR 42000: Unknown schema 'no_such_database'
477
477
SHOW COLUMNS FROM no_such_table;
478
478
ERROR 42S02: Table 'test.no_such_table' doesn't exist
479
479
show variables like 'myisam_recover_options';