~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/tests/t/bug616466_auto_increment_crash.test

  • Committer: Patrick Crews
  • Date: 2011-01-14 17:12:24 UTC
  • mto: (2086.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: gleebix@gmail.com-20110114171224-1tdc5icggz4e2u1j
Made include/have_valgrind do what the name implies altered not_valgrind to do the job of skipping tests that are in a valgrind run.  Updates to tests and whatnot to accomodate this

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--source include/have_valgrind.inc
 
1
--source include/not_valgrind.inc
2
2
create table autoincbug (id int not null primary key auto_increment, test varchar(10));
3
3
alter table autoincbug auto_increment = 1000;
4
4
insert into autoincbug values (null, 'hej');