diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-26 12:07:10 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-26 12:07:10 +0000 |
commit | 2c2b98385a29e24d33e4b57076319ee31982826e (patch) | |
tree | 183674f54ae3bc76baae0ae6e767b2c9ca8722ab /src | |
parent | a32450a5855eed4bfd756ef292ee45d3c754665b (diff) | |
download | postgresql-2c2b98385a29e24d33e4b57076319ee31982826e.tar.gz postgresql-2c2b98385a29e24d33e4b57076319ee31982826e.zip |
index_markpos()/index_restrpos are used now.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/index/indexam.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index 51cf2034fbc..17fb43b4362 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.20 1998/01/31 04:38:06 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.21 1998/02/26 12:07:10 vadim Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -271,7 +271,6 @@ index_endscan(IndexScanDesc scan) RelationUnsetRIntentLock(scan->relation); } -#ifdef NOT_USED /* ---------------- * index_markpos - mark a scan position * ---------------- @@ -287,9 +286,6 @@ index_markpos(IndexScanDesc scan) fmgr(procedure, scan); } -#endif - -#ifdef NOT_USED /* ---------------- * index_restrpos - restore a scan position * ---------------- @@ -305,8 +301,6 @@ index_restrpos(IndexScanDesc scan) fmgr(procedure, scan); } -#endif - /* ---------------- * index_getnext - get the next tuple from a scan * |