~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blitzdb/tests/t/blitzdb-alter.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:
23
23
  primary key (pk)
24
24
) ENGINE=blitzdb ;
25
25
 
26
 
--error 1112
 
26
--error ER_UNSUPPORTED_EXTENSION
27
27
ALTER TABLE `t1` DISABLE KEYS;
28
 
--error 1112
 
28
--error ER_UNSUPPORTED_EXTENSION
29
29
ALTER TABLE `t1` ENABLE KEYS;
30
30
 
31
31
DROP TABLE `t1`;