diff options
author | unknown <ramil@mysql.com> | 2005-12-01 14:31:28 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-12-01 14:31:28 +0400 |
commit | babaa74e8a2c6548a726ace86ab1cf0c7c323e0e (patch) | |
tree | 5746856ab978783835427bbfa170928071efead0 /mysql-test/r | |
parent | c9ef409150a1cdcdd0ab3d618baec592db45de78 (diff) | |
parent | f853fbc9f43e76018752cab3b91e04157dd9b097 (diff) | |
download | mariadb-git-babaa74e8a2c6548a726ace86ab1cf0c7c323e0e.tar.gz |
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/ram/work/mysql-5.0
sql/sql_class.cc:
Auto merged
sql/sql_class.h:
Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/sp.result | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 694cf903d35..454ff0b615f 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -4046,4 +4046,28 @@ boo 2 drop procedure bug14643_1| drop procedure bug14643_2| +drop procedure if exists bug14304| +drop table if exists t3, t4| +create table t3(a int primary key auto_increment)| +create table t4(a int primary key auto_increment)| +create procedure bug14304() +begin +insert into t3 set a=null; +insert into t4 set a=null; +insert into t4 set a=null; +insert into t4 set a=null; +insert into t4 set a=null; +insert into t4 set a=null; +insert into t4 select null as a; +insert into t3 set a=null; +insert into t3 set a=null; +select * from t3; +end| +call bug14304()| +a +1 +2 +3 +drop procedure bug14304| +drop table t3, t4| drop table t1,t2; |