diff options
author | Tom Lane | 2005-03-27 23:53:05 +0000 |
---|---|---|
committer | Tom Lane | 2005-03-27 23:53:05 +0000 |
commit | a6ddfde13201feb04d70339ea2aab64ebd32fe32 (patch) | |
tree | b310d837cafcb950678a2ff5bdf921e815c294cb /src/include/access/gist.h | |
parent | eabb1b58e71d864bae427d65f38eb362e0f60839 (diff) |
First steps towards index scans with heap access decoupled from index
access: define new index access method functions 'amgetmulti' that can
fetch multiple TIDs per call. (The functions exist but are totally
untested as yet.) Since I was modifying pg_am anyway, remove the
no-longer-needed 'rel' parameter from amcostestimate functions, and
also remove the vestigial amowner column that was creating useless
work for Alvaro's shared-object-dependencies project.
Initdb forced due to changes in pg_am.
Diffstat (limited to 'src/include/access/gist.h')
-rw-r--r-- | src/include/access/gist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/access/gist.h b/src/include/access/gist.h index 2b8a3b45d9..0bd485b6df 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -196,5 +196,6 @@ extern void gist_desc(char *buf, uint8 xl_info, char *rec); /* gistget.c */ extern Datum gistgettuple(PG_FUNCTION_ARGS); +extern Datum gistgetmulti(PG_FUNCTION_ARGS); #endif /* GIST_H */ |