~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/catalog/tests/r/drop.result

  • Committer: Brian Aker
  • Date: 2011-01-13 05:06:32 UTC
  • mto: (2079.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110113050632-92b0129n2urv5v0w
Fix for test on drop (error message change).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
DROP_CATALOG("foo")
10
10
1
11
11
SELECT drop_catalog("local");
12
 
ERROR HY000: You can not drop the 'local' catalog.
 
12
ERROR HY000: You cannot drop the 'local' catalog.
13
13
SELECT drop_catalog("does_not_exist");
14
14
ERROR HY000: Catalog 'does_not_exist' does not exist.
15
15
SELECT CATALOG_NAME FROM DATA_DICTIONARY.CATALOGS WHERE CATALOG_NAME != "local" ORDER BY CATALOG_NAME;