diff options
author | unknown <brian@zim.(none)> | 2007-01-26 14:17:45 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2007-01-26 14:17:45 -0800 |
commit | c95bc8dcdbe50614bcd00051424d388fed42f999 (patch) | |
tree | 3da125d6fec077faefad6e7cd699a550a5c5b1a0 /mysql-test/t/archive.test | |
parent | f69cfbf857475d416e549ff1403947d61396201f (diff) | |
download | mariadb-git-c95bc8dcdbe50614bcd00051424d388fed42f999.tar.gz |
For performance reasons we remove the ability in unique indexes on autoincrements to remove the ability to insert key lower then the current autoincrement value.
mysql-test/r/archive.result:
Modified error output
mysql-test/t/archive.test:
Fix for the change in behavior
storage/archive/ha_archive.cc:
ifdef of the search record code
Diffstat (limited to 'mysql-test/t/archive.test')
-rw-r--r-- | mysql-test/t/archive.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test index ddb313217a6..1f4cf6ea132 100644 --- a/mysql-test/t/archive.test +++ b/mysql-test/t/archive.test @@ -1379,6 +1379,7 @@ INSERT INTO t5 VALUES (NULL, "foo"); INSERT INTO t5 VALUES (NULL, "foo"); INSERT INTO t5 VALUES (NULL, "foo"); INSERT INTO t5 VALUES (32, "foo"); +--error 1022 INSERT INTO t5 VALUES (23, "foo"); INSERT INTO t5 VALUES (NULL, "foo"); INSERT INTO t5 VALUES (NULL, "foo"); |