diff options
Diffstat (limited to 'src/backend/executor/execAmi.c')
-rw-r--r-- | src/backend/executor/execAmi.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/backend/executor/execAmi.c b/src/backend/executor/execAmi.c index dedb9d3b054..84b33d4f1e1 100644 --- a/src/backend/executor/execAmi.c +++ b/src/backend/executor/execAmi.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.4 1996/11/08 00:45:54 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.5 1997/08/19 21:30:51 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -43,6 +43,10 @@ #include "access/heapam.h" #include "catalog/heap.h" +static Pointer ExecBeginScan(Relation relation, int nkeys, ScanKey skeys, + bool isindex, ScanDirection dir, TimeQual time_range); +static Relation ExecOpenR(Oid relationOid, bool isindex); + /* ---------------------------------------------------------------- * ExecOpenScanR * @@ -99,7 +103,7 @@ ExecOpenScanR(Oid relOid, * returns a relation descriptor given an object id. * ---------------------------------------------------------------- */ -Relation +static Relation ExecOpenR(Oid relationOid, bool isindex) { Relation relation; @@ -133,7 +137,7 @@ ExecOpenR(Oid relationOid, bool isindex) * -cim 9/14/89 * ---------------------------------------------------------------- */ -Pointer +static Pointer ExecBeginScan(Relation relation, int nkeys, ScanKey skeys, |