mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			150 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			150 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * contrib/seg/segdata.h
 | 
						|
 */
 | 
						|
typedef struct SEG
 | 
						|
{
 | 
						|
	float4		lower;
 | 
						|
	float4		upper;
 | 
						|
	char		l_sigd;
 | 
						|
	char		u_sigd;
 | 
						|
	char		l_ext;
 | 
						|
	char		u_ext;
 | 
						|
} SEG;
 |