mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			755 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			755 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*-------------------------------------------------------------------------
 | |
|  *
 | |
|  * iqual.h
 | |
|  *	  Index scan key qualification definitions.
 | |
|  *
 | |
|  *
 | |
|  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
 | |
|  * Portions Copyright (c) 1994, Regents of the University of California
 | |
|  *
 | |
|  * $Id: iqual.h,v 1.15 2001/01/24 19:43:19 momjian Exp $
 | |
|  *
 | |
|  *-------------------------------------------------------------------------
 | |
|  */
 | |
| #ifndef IQUAL_H
 | |
| #define IQUAL_H
 | |
| 
 | |
| #include "access/itup.h"
 | |
| #include "access/skey.h"
 | |
| 
 | |
| 
 | |
| /* ----------------
 | |
|  *		index tuple qualification support
 | |
|  * ----------------
 | |
|  */
 | |
| 
 | |
| extern int	NIndexTupleProcessed;
 | |
| 
 | |
| extern bool index_keytest(IndexTuple tuple, TupleDesc tupdesc,
 | |
| 			  int scanKeySize, ScanKey key);
 | |
| 
 | |
| #endif	 /* IQUAL_H */
 |