mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			430 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			430 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| /* $PostgreSQL: pgsql/contrib/test_parser/uninstall_test_parser.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */
 | |
| 
 | |
| -- Adjust this setting to control where the objects get dropped.
 | |
| SET search_path = public;
 | |
| 
 | |
| DROP TEXT SEARCH PARSER testparser;
 | |
| 
 | |
| DROP FUNCTION testprs_start(internal, int4);
 | |
| 
 | |
| DROP FUNCTION testprs_getlexeme(internal, internal, internal);
 | |
| 
 | |
| DROP FUNCTION testprs_end(internal);
 | |
| 
 | |
| DROP FUNCTION testprs_lextype(internal);
 |