~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/constraints.test

  • Committer: Monty Taylor
  • Date: 2010-10-15 17:18:02 UTC
  • mto: (1859.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: mordred@inaugust.com-20101015171802-qhk6zyfhrkvprr1n
Added support for registering regular sys_var instances via module::Context.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
alter table t1 add constraint constraint_1 unique (a);
26
26
alter table t1 add constraint unique key_1(a);
27
27
alter table t1 add constraint constraint_2 unique key_2(a);
 
28
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
28
29
show create table t1;
29
30
drop table t1;
30
31