PostgreSQL Source Code git master
cmptype.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef enum CompareType CompareType
 

Enumerations

enum  CompareType {
  COMPARE_INVALID = 0 , COMPARE_LT = 1 , COMPARE_LE = 2 , COMPARE_EQ = 3 ,
  COMPARE_GE = 4 , COMPARE_GT = 5 , COMPARE_NE = 6 , COMPARE_OVERLAP ,
  COMPARE_CONTAINED_BY
}
 

Typedef Documentation

◆ CompareType

typedef enum CompareType CompareType

Enumeration Type Documentation

◆ CompareType

Enumerator
COMPARE_INVALID 
COMPARE_LT 
COMPARE_LE 
COMPARE_EQ 
COMPARE_GE 
COMPARE_GT 
COMPARE_NE 
COMPARE_OVERLAP 
COMPARE_CONTAINED_BY 

Definition at line 31 of file cmptype.h.

32{
34 COMPARE_LT = 1, /* BTLessStrategyNumber */
35 COMPARE_LE = 2, /* BTLessEqualStrategyNumber */
36 COMPARE_EQ = 3, /* BTEqualStrategyNumber */
37 COMPARE_GE = 4, /* BTGreaterEqualStrategyNumber */
38 COMPARE_GT = 5, /* BTGreaterStrategyNumber */
39 COMPARE_NE = 6, /* no such btree strategy */
CompareType
Definition: cmptype.h:32
@ COMPARE_LE
Definition: cmptype.h:35
@ COMPARE_OVERLAP
Definition: cmptype.h:40
@ COMPARE_INVALID
Definition: cmptype.h:33
@ COMPARE_GT
Definition: cmptype.h:38
@ COMPARE_EQ
Definition: cmptype.h:36
@ COMPARE_NE
Definition: cmptype.h:39
@ COMPARE_CONTAINED_BY
Definition: cmptype.h:41
@ COMPARE_GE
Definition: cmptype.h:37
@ COMPARE_LT
Definition: cmptype.h:34