~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/catalog/tests/t/drop.test

  • Committer: Brian Aker
  • Date: 2010-12-30 00:52:57 UTC
  • mto: (2060.4.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101230005257-82j4x64gijal0u3q
Update code to test/handle conflicting create/drop schema.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
--error ER_CATALOG_NO_DROP_LOCAL
8
8
SELECT drop_catalog("local");
 
9
 
 
10
--error ER_CATALOG_DOES_NOT_EXIST
 
11
SELECT drop_catalog("does_not_exist");
 
12
 
9
13
SELECT CATALOG_NAME FROM DATA_DICTIONARY.CATALOGS WHERE CATALOG_NAME != "local";
10
14
SELECT CATALOG_NAME FROM DATA_DICTIONARY.CATALOG_CACHE WHERE CATALOG_NAME != "local";