diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 1ff4c14c6d1..b8723a87661 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -1565,10 +1565,10 @@ CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY) SELECT a FROM t1; CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY) SELECT a FROM t1; -ERROR 23000: Duplicate entry '1' for key 1 +ERROR 23000: Duplicate entry '1' for key 'PRIMARY' CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY) SELECT a FROM t1; -ERROR 23000: Duplicate entry '1' for key 1 +ERROR 23000: Duplicate entry '1' for key 'PRIMARY' DROP TABLE t1, t2; End of 5.0 tests CREATE TABLE t1 (a int, b int);