mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 00:08:23 -05:00 
			
		
		
		
	specify the cost values to use, instead of always using 1's. Volkan Yazici In passing, remove fuzzystrmatch.h, which contained a bunch of stuff that had no business being in a .h file; fold it into its only user, fuzzystrmatch.c.
		
			
				
	
	
		
			21 lines
		
	
	
		
			507 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			507 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql,v 1.4 2008/04/03 21:13:07 tgl Exp $ */
 | 
						|
 | 
						|
-- Adjust this setting to control where the objects get dropped.
 | 
						|
SET search_path = public;
 | 
						|
 | 
						|
DROP FUNCTION dmetaphone_alt (text);
 | 
						|
 | 
						|
DROP FUNCTION dmetaphone (text);
 | 
						|
 | 
						|
DROP FUNCTION difference(text,text);
 | 
						|
 | 
						|
DROP FUNCTION text_soundex(text);
 | 
						|
 | 
						|
DROP FUNCTION soundex(text);
 | 
						|
 | 
						|
DROP FUNCTION metaphone (text,int);
 | 
						|
 | 
						|
DROP FUNCTION levenshtein (text,text,int,int,int);
 | 
						|
 | 
						|
DROP FUNCTION levenshtein (text,text);
 |