1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for bug #6880: LAST_INSERT_ID() within a statement

This commit is contained in:
ramil@mysql.com
2006-06-07 14:01:10 +05:00
parent cb4c6a0ded
commit 0bdae38efb
5 changed files with 74 additions and 3 deletions

View File

@ -108,4 +108,18 @@ show slave status;
--error 1220
show binlog events in 'slave-bin.000005' from 4;
#
# Bug #6880: LAST_INSERT_ID() within a statement
#
create table t1(a int auto_increment primary key, b int);
insert into t1 values (NULL, 1);
reset master;
set insert_id=5;
insert into t1 values (NULL, last_insert_id()), (NULL, last_insert_id());
--replace_result $VERSION VERSION
show binlog events;
select * from t1;
drop table t1;
# End of 4.1 tests