mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	fuzzystrmatch's difference() function assumes that _soundex() always initializes its output buffer fully. This was not so for the case of a string containing no alphabetic characters, resulting in unstable output and Valgrind complaints. Fix by using memset() to fill the whole buffer in the early-exit case. Also make some cosmetic improvements (I didn't care for the random switches between "instr[0]" and "*instr" notation). Report and diagnosis by Alexander Lakhin (bug #17935). Back-patch to all supported branches. Discussion: https://postgr.es/m/17935-b99316aa79c18513@postgresql.org
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
CREATE EXTENSION fuzzystrmatch;
 | 
						|
SELECT soundex('hello world!');
 | 
						|
 soundex 
 | 
						|
---------
 | 
						|
 H464
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT soundex('Anne'), soundex('Ann'), difference('Anne', 'Ann');
 | 
						|
 soundex | soundex | difference 
 | 
						|
---------+---------+------------
 | 
						|
 A500    | A500    |          4
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT soundex('Anne'), soundex('Andrew'), difference('Anne', 'Andrew');
 | 
						|
 soundex | soundex | difference 
 | 
						|
---------+---------+------------
 | 
						|
 A500    | A536    |          2
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT soundex('Anne'), soundex('Margaret'), difference('Anne', 'Margaret');
 | 
						|
 soundex | soundex | difference 
 | 
						|
---------+---------+------------
 | 
						|
 A500    | M626    |          0
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT soundex(''), difference('', '');
 | 
						|
 soundex | difference 
 | 
						|
---------+------------
 | 
						|
         |          4
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT levenshtein('GUMBO', 'GAMBOL');
 | 
						|
 levenshtein 
 | 
						|
-------------
 | 
						|
           2
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT levenshtein('GUMBO', 'GAMBOL', 2, 1, 1);
 | 
						|
 levenshtein 
 | 
						|
-------------
 | 
						|
           3
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT levenshtein_less_equal('extensive', 'exhaustive', 2);
 | 
						|
 levenshtein_less_equal 
 | 
						|
------------------------
 | 
						|
                      3
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT levenshtein_less_equal('extensive', 'exhaustive', 4);
 | 
						|
 levenshtein_less_equal 
 | 
						|
------------------------
 | 
						|
                      4
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT metaphone('GUMBO', 4);
 | 
						|
 metaphone 
 | 
						|
-----------
 | 
						|
 KM
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT dmetaphone('gumbo');
 | 
						|
 dmetaphone 
 | 
						|
------------
 | 
						|
 KMP
 | 
						|
(1 row)
 | 
						|
 | 
						|
SELECT dmetaphone_alt('gumbo');
 | 
						|
 dmetaphone_alt 
 | 
						|
----------------
 | 
						|
 KMP
 | 
						|
(1 row)
 | 
						|
 |