diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-03 20:47:49 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-03 20:47:49 +0000 |
| commit | b4eae023bb2b5e9bce96cd367d70c180eefe6bf9 (patch) | |
| tree | 5fc3b8619b94897cf1b6ac884423226254c98578 /src/include/access/gin.h | |
| parent | f0dae70431ec0af676d7e6f26454145903045aba (diff) | |
| download | postgresql-b4eae023bb2b5e9bce96cd367d70c180eefe6bf9.tar.gz | |
Clean up the messy semantics (not to mention inefficiency) of PageGetTempPage
by splitting it into three functions with better-defined behaviors.
Zdenek Kotala
Diffstat (limited to 'src/include/access/gin.h')
| -rw-r--r-- | src/include/access/gin.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/gin.h b/src/include/access/gin.h index 57cb8a345a..5151058514 100644 --- a/src/include/access/gin.h +++ b/src/include/access/gin.h @@ -4,7 +4,7 @@ * * Copyright (c) 2006-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.25 2008/10/20 13:39:44 teodor Exp $ + * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.26 2008/11/03 20:47:49 tgl Exp $ *-------------------------------------------------------------------------- */ @@ -246,7 +246,6 @@ extern int compareAttEntries(GinState *ginstate, OffsetNumber attnum_a, Datum a, extern Datum *extractEntriesS(GinState *ginstate, OffsetNumber attnum, Datum value, int32 *nentries, bool *needUnique); extern Datum *extractEntriesSU(GinState *ginstate, OffsetNumber attnum, Datum value, int32 *nentries); -extern Page GinPageGetCopyPage(Page page); extern Datum gin_index_getattr(GinState *ginstate, IndexTuple tuple); extern OffsetNumber gintuple_get_attrnum(GinState *ginstate, IndexTuple tuple); |
