mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			376 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			376 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef MISC_UTILS_H
 | 
						|
#define MISC_UTILS_H
 | 
						|
 | 
						|
int			query_limit(int limit);
 | 
						|
int			backend_pid(void);
 | 
						|
int			unlisten(char *relname);
 | 
						|
int			max(int x, int y);
 | 
						|
int			min(int x, int y);
 | 
						|
int			assert_enable(int val);
 | 
						|
 | 
						|
#ifdef ASSERT_CHECKING_TEST
 | 
						|
int			assert_test(int val);
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
/*
 | 
						|
 * Local variables:
 | 
						|
 *	tab-width: 4
 | 
						|
 *	c-indent-level: 4
 | 
						|
 *	c-basic-offset: 4
 | 
						|
 * End:
 | 
						|
 */
 |