diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-26 12:14:54 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-26 12:14:54 +0000 |
commit | 8d78d164853ab662d08590319956a49f183d8162 (patch) | |
tree | 2637914f64d3e7be941bdccef69a7ee4b5932638 /src | |
parent | 8749b6c7948f5f7a995acc74467cecb8be81f048 (diff) | |
download | postgresql-8d78d164853ab662d08590319956a49f183d8162.tar.gz postgresql-8d78d164853ab662d08590319956a49f183d8162.zip |
index_markpos()/index_restrpos() are in use now.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/genam.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/access/genam.h b/src/include/access/genam.h index b92e38379bd..c9ec3280195 100644 --- a/src/include/access/genam.h +++ b/src/include/access/genam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: genam.h,v 1.12 1998/02/26 04:39:52 momjian Exp $ + * $Id: genam.h,v 1.13 1998/02/26 12:14:54 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -36,6 +36,8 @@ index_beginscan(Relation relation, bool scanFromEnd, uint16 numberOfKeys, ScanKey key); extern void index_rescan(IndexScanDesc scan, bool scanFromEnd, ScanKey key); extern void index_endscan(IndexScanDesc scan); +extern void index_markpos(IndexScanDesc scan); +extern void index_restrpos(IndexScanDesc scan); extern RetrieveIndexResult index_getnext(IndexScanDesc scan, ScanDirection direction); |