We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea6ed2 commit 4c0e97cCopy full SHA for 4c0e97c
src/include/access/gin.h
@@ -48,13 +48,13 @@ typedef struct GinStatsData
48
} GinStatsData;
49
50
/* ginlogic.c */
51
-enum
+enum GinLogicValueEnum
52
{
53
- GIN_FALSE = 0, /* item is present / matches */
54
- GIN_TRUE = 1, /* item is not present / does not match */
+ GIN_FALSE = 0, /* item is not present / does not match */
+ GIN_TRUE = 1, /* item is present / matches */
55
GIN_MAYBE = 2 /* don't know if item is present / don't know if
56
* matches */
57
-} GinLogicValueEnum;
+};
58
59
typedef char GinLogicValue;
60
0 commit comments