Commit 2d998575 authored by unknown's avatar unknown
Browse files

Merge mysql.com:/home/jimw/my/mysql-5.0-7293

into mysql.com:/home/jimw/my/mysql-5.0-clean

parents bd24e892 b318122c
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -3041,4 +3041,20 @@ Warning 1265 Data truncated for column 'id' at row 2
delete from t1|
drop procedure bug9004_1|
drop procedure bug9004_2|
drop procedure if exists bug7293|
insert into t1 values ('secret', 0)|
create procedure bug7293(p1 varchar(100))
begin
if exists (select id from t1 where soundex(p1)=soundex(id)) then
select 'yes';
end if;
end;|
call bug7293('secret')|
yes
yes
call bug7293 ('secrete')|
yes
yes
drop procedure bug7293|
delete from t1|
drop table t1,t2;
+17 −0
Original line number Diff line number Diff line
@@ -3723,6 +3723,23 @@ delete from t1|
drop procedure bug9004_1|
drop procedure bug9004_2|

#
# BUG#7293: Stored procedure crash with soundex
#
--disable_warnings
drop procedure if exists bug7293|
--enable_warnings
insert into t1 values ('secret', 0)| 
create procedure bug7293(p1 varchar(100))
begin
  if exists (select id from t1 where soundex(p1)=soundex(id)) then
    select 'yes';
  end if;
end;| 
call bug7293('secret')| 
call bug7293 ('secrete')| 
drop procedure bug7293|
delete from t1|

#
# BUG#NNNN: New bug synopsis