~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/constraints.test

  • Committer: Jay Pipes
  • Date: 2009-02-21 16:00:06 UTC
  • mto: (907.1.1 trunk-with-temporal)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090221160006-vnk3wt4qbcz62eru
Removes the TIME column type and related time functions.

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/
29
28
show create table t1;
30
29
drop table t1;
31
30