Bugs item #1848499, was opened at 2007-12-11 10:20
Message generated for change (Comment added) made by nielsnes
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=482468&aid=1848499&group_id=56967

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: SQL/Core
Group: SQL CVS Head
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Romulo Goncalves (romulog)
>Assigned to: Niels Nes (nielsnes)
Summary: difference function crashes

Initial Comment:
If I run the following queries the mserver5-sql crashes:

create table test ( str VARCHAR(20), str2 VARCHAR(20));
insert into test values ('', 'test');
insert into test values ('test', '');
insert into test values ('','');
insert into test values (' test ','');

select str,str2,soundex(str),soundex(str2), 
editdistance2(soundex(str),soundex(str2)), difference(str,str2) from test;

drop table test;

Note: This bug was detected by the execution of the test string.sql at

sql/src/test/Tests

Regards,
Romulo

----------------------------------------------------------------------

>Comment By: Niels Nes (nielsnes)
Date: 2007-12-18 22:37

Message:
Logged In: YES 
user_id=43556
Originator: NO

fixed the levenshtein implemenation, it returned the distance in the
return value instead via the first argument 'result'. Also fixed a couple
of m5 interface bugs.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=482468&aid=1848499&group_id=56967

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Monetdb-bugs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-bugs

Reply via email to