~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb-autoinc.test

  • Committer: Monty Taylor
  • Date: 2010-12-24 02:13:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101224021305-e3slv1cyjczqorij
Changed the bzrignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
INSERT INTO t1 SET c1 = 2;
37
37
INSERT INTO t1 SET c1 = -1;
38
38
SELECT * FROM t1;
39
 
--error ER_DUP_ENTRY, ER_DUP_ENTRY
 
39
-- error ER_DUP_ENTRY,1062
40
40
INSERT INTO t1 SET c1 = -1;
41
41
SHOW CREATE TABLE t1;
42
42
REPLACE INTO t1 VALUES (-1);