mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	about best practice for including the module creation scripts: to wit that you should suppress NOTICE messages. This avoids creating regression failures by adding or removing comment lines in the module scripts.
		
			
				
	
	
		
			10 lines
		
	
	
		
			236 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			236 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
| --
 | |
| -- first, define the datatype.  Turn off echoing so that expected file
 | |
| -- does not depend on contents of btree_gist.sql.
 | |
| --
 | |
| SET client_min_messages = warning;
 | |
| \set ECHO none
 | |
| \i btree_gist.sql
 | |
| \set ECHO all
 | |
| RESET client_min_messages;
 |