diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-31 10:26:38 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-31 10:26:38 +0300 |
commit | 0cfa34c25a7c8e7017cac346d954016fad0dfc16 (patch) | |
tree | 9b4158fef3a00431864290a38a964b329b144f6e /src/include/access/gin_private.h | |
parent | 7317d8d961f210c3a6b20972cd605bcd9bffb06e (diff) | |
download | postgresql-0cfa34c25a7c8e7017cac346d954016fad0dfc16.tar.gz postgresql-0cfa34c25a7c8e7017cac346d954016fad0dfc16.zip |
Rename GinLogicValue to GinTernaryValue.
It's more descriptive. Also, get rid of the enum, and use #defines instead,
per Greg Stark's suggestion.
Diffstat (limited to 'src/include/access/gin_private.h')
-rw-r--r-- | src/include/access/gin_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/gin_private.h b/src/include/access/gin_private.h index a7beed1f256..d11811acb57 100644 --- a/src/include/access/gin_private.h +++ b/src/include/access/gin_private.h @@ -763,7 +763,7 @@ typedef struct GinScanKeyData /* array of check flags, reported to consistentFn */ bool *entryRes; bool (*boolConsistentFn) (GinScanKey key); - GinLogicValue (*triConsistentFn) (GinScanKey key); + GinTernaryValue (*triConsistentFn) (GinScanKey key); FmgrInfo *consistentFmgrInfo; FmgrInfo *triConsistentFmgrInfo; Oid collation; |