1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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

into mysql.com:/home/jimw/my/mysql-5.0-clean
This commit is contained in:
unknown
2005-05-02 10:20:54 -07:00
2 changed files with 33 additions and 0 deletions

View File

@ -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;

View File

@ -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