~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_drop_table.test

  • Committer: lbieber
  • Date: 2010-08-27 21:33:08 UTC
  • mfrom: (1733.2.1 staging)
  • Revision ID: lbieber@orisndriz03-20100827213308-amx6ld6by21sba7s
Merge Shrews - bug 599582
Merge Lee - use enum values instead of error numbers in tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
CREATE TABLE t2 (a int primary key);
3
3
DROP TABLE t1;
4
4
DROP TABLE t2;
5
 
--error 1051
 
5
--error ER_BAD_TABLE_ERROR
6
6
DROP TABLE t3;
7
7