diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2008-10-20 13:39:44 +0000 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2008-10-20 13:39:44 +0000 |
commit | 77db9d9ff21c539499b74216099678dad91ab334 (patch) | |
tree | 9d6ef9735895ed83d16c1ed719b9968c0906984a /src/include/access/gin.h | |
parent | 7f6bc33fe3490bd1a2b9b584abbabe3e17b1715a (diff) | |
download | postgresql-77db9d9ff21c539499b74216099678dad91ab334.tar.gz postgresql-77db9d9ff21c539499b74216099678dad91ab334.zip |
Remove mark/restore support in GIN and GiST indexes.
Per Tom's comment.
Also revome useless GISTScanOpaque->flags field.
Diffstat (limited to 'src/include/access/gin.h')
-rw-r--r-- | src/include/access/gin.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/access/gin.h b/src/include/access/gin.h index de29cff86ba..57cb8a345a7 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.24 2008/07/13 21:50:04 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.25 2008/10/20 13:39:44 teodor Exp $ *-------------------------------------------------------------------------- */ @@ -426,8 +426,6 @@ typedef struct GinScanOpaqueData uint32 nkeys; bool isVoidRes; /* true if ginstate.extractQueryFn guarantees * that nothing will be found */ - - GinScanKey markPos; } GinScanOpaqueData; typedef GinScanOpaqueData *GinScanOpaque; @@ -449,7 +447,6 @@ extern PGDLLIMPORT int GinFuzzySearchLimit; extern Datum gingetbitmap(PG_FUNCTION_ARGS); extern Datum gingettuple(PG_FUNCTION_ARGS); -extern void ginrestartentry(GinScanEntry entry); /* ginvacuum.c */ extern Datum ginbulkdelete(PG_FUNCTION_ARGS); |