1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-04 17:23:46 +03:00

test result fixed

mysql-test/r/auto_increment.result:
  result fixed
This commit is contained in:
unknown
2006-05-18 12:42:38 +05:00
parent 07bb501fd2
commit ea9c282de4

View File

@@ -422,5 +422,5 @@ CREATE TABLE t1 (t1 INT(10) PRIMARY KEY, t2 INT(10));
INSERT INTO t1 VALUES(0, 0); INSERT INTO t1 VALUES(0, 0);
INSERT INTO t1 VALUES(1, 1); INSERT INTO t1 VALUES(1, 1);
ALTER TABLE t1 CHANGE t1 t1 INT(10) auto_increment; ALTER TABLE t1 CHANGE t1 t1 INT(10) auto_increment;
ERROR 23000: ALTER TABLE causes auto_increment resequencing, causing Duplicate entry '1' for key 'PRIMARY' ERROR 23000: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '1' for key 'PRIMARY'
DROP TABLE t1; DROP TABLE t1;