mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
merge 10-base->10.0
This commit is contained in:
commit
55de9b0468
50 changed files with 616 additions and 107 deletions
|
|
@ -216,7 +216,7 @@ reset master;
|
|||
create table t1 (id tinyint auto_increment primary key);
|
||||
insert into t1 values(5);
|
||||
set insert_id=128;
|
||||
--error 167
|
||||
--error HA_ERR_AUTOINC_ERANGE
|
||||
insert into t1 values(null) /* Not binlogged */;
|
||||
|
||||
# The followin insert ignore will be put in binlog
|
||||
|
|
@ -238,7 +238,7 @@ drop table t1;
|
|||
|
||||
create table t1 (id tinyint auto_increment primary key) engine=myisam;
|
||||
set insert_id=128;
|
||||
--error 167
|
||||
--error HA_ERR_AUTOINC_ERANGE
|
||||
insert into t1 values(5),(null) /* Insert_id 128 */;
|
||||
|
||||
# The followin insert ignore will be put in binlog
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue