summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl_auto_increment.result
diff options
context:
space:
mode:
authorunknown <guilhem@gbichot3.local>2006-07-09 18:13:57 +0200
committerunknown <guilhem@gbichot3.local>2006-07-09 18:13:57 +0200
commitf85f9ac2a03a1f16ec0d08b85f91aca0c49ed2a8 (patch)
tree779d04a716401e77b3df0e785de2b6161004edba /mysql-test/r/rpl_auto_increment.result
parenta92e1c4aea573d4052b164c1905d08fef420eb72 (diff)
parent9ba38382705af826200ac30c0fbaad9022dd4196 (diff)
downloadmariadb-git-f85f9ac2a03a1f16ec0d08b85f91aca0c49ed2a8.tar.gz
Merge gbichot3.local:/home/mysql_src/mysql-5.0
into gbichot3.local:/home/mysql_src/mysql-5.1 mysql-test/r/rpl_auto_increment.result: Auto merged mysql-test/r/rpl_insert_id.result: Auto merged mysql-test/t/rpl_openssl.test: Auto merged sql/ha_ndbcluster.cc: Auto merged mysql-test/t/rpl_auto_increment.test: will fix by hand mysql-test/t/rpl_insert_id.test: will fix by hand sql/handler.cc: comment sql/handler.h: manual merge sql/sql_insert.cc: manual merge
Diffstat (limited to 'mysql-test/r/rpl_auto_increment.result')
-rw-r--r--mysql-test/r/rpl_auto_increment.result44
1 files changed, 44 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_auto_increment.result b/mysql-test/r/rpl_auto_increment.result
index 9984ccf51f3..a1f56440ec8 100644
--- a/mysql-test/r/rpl_auto_increment.result
+++ b/mysql-test/r/rpl_auto_increment.result
@@ -183,3 +183,47 @@ a
32
42
drop table t1;
+create table t1 (a tinyint not null auto_increment primary key) engine=myisam;
+insert into t1 values(103);
+set auto_increment_increment=11;
+set auto_increment_offset=4;
+insert into t1 values(null);
+insert into t1 values(null);
+insert into t1 values(null);
+ERROR 23000: Duplicate entry '125' for key 1
+select a, mod(a-@@auto_increment_offset,@@auto_increment_increment) from t1 order by a;
+a mod(a-@@auto_increment_offset,@@auto_increment_increment)
+103 0
+114 0
+125 0
+create table t2 (a tinyint unsigned not null auto_increment primary key) engine=myisam;
+set auto_increment_increment=10;
+set auto_increment_offset=1;
+set insert_id=1000;
+insert into t2 values(null);
+Warnings:
+Warning 1264 Out of range value adjusted for column 'a' at row 1
+select a, mod(a-@@auto_increment_offset,@@auto_increment_increment) from t2 order by a;
+a mod(a-@@auto_increment_offset,@@auto_increment_increment)
+251 0
+create table t3 like t1;
+set auto_increment_increment=1000;
+set auto_increment_offset=700;
+insert into t3 values(null);
+Warnings:
+Warning 1264 Out of range value adjusted for column 'a' at row 1
+select * from t3 order by a;
+a
+127
+select * from t1 order by a;
+a
+103
+114
+125
+select * from t2 order by a;
+a
+251
+select * from t3 order by a;
+a
+127
+drop table t1,t2,t3;