From: Heikki Linnakangas Date: Fri, 21 Mar 2014 22:41:37 +0000 (+0100) Subject: Fix thinkos in GinLogicValue enum. X-Git-Tag: REL9_4_BETA1~297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c0e97c2d58f1cec9fc24237342962811de3cfee;p=postgresql Fix thinkos in GinLogicValue enum. It was incorrectly declared as global variable, not an enum type, and the comments for GIN_FALSE and GIN_TRUE were backwards. --- diff --git a/src/include/access/gin.h b/src/include/access/gin.h index 75a86c4319..34f4405bf6 100644 --- a/src/include/access/gin.h +++ b/src/include/access/gin.h @@ -48,13 +48,13 @@ typedef struct GinStatsData } GinStatsData; /* ginlogic.c */ -enum +enum GinLogicValueEnum { - GIN_FALSE = 0, /* item is present / matches */ - 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 */ GIN_MAYBE = 2 /* don't know if item is present / don't know if * matches */ -} GinLogicValueEnum; +}; typedef char GinLogicValue;