mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			247 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			247 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef SET_SEQUENCE_H
 | 
						|
#define SET_SEQUENCE_H
 | 
						|
 | 
						|
int set_currval(struct varlena *sequence, int4 nextval);
 | 
						|
int next_id(struct varlena *sequence);
 | 
						|
int last_id(struct varlena *sequence);
 | 
						|
int set_last_id(struct varlena *sequence, int4 nextval);
 | 
						|
 | 
						|
#endif
 |