summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-08-03 19:41:35 +0000
committerBruce Momjian <bruce@momjian.us>1998-08-03 19:41:35 +0000
commit439a2af0bc2b661814074396fd4bea88adeb8195 (patch)
tree241d0aaf8ecd9dcd5cfc3d31a4387e716951f2c5 /src/include/nodes/execnodes.h
parent21ad8695caf966bb98ba81eb34b412676b2ba74e (diff)
Update mark/reset index code for multiple indexes, (OR code).
Thanks for Vadim for fixes.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 533024e5833..c582cdd7994 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execnodes.h,v 1.16 1998/07/27 19:38:34 vadim Exp $
+ * $Id: execnodes.h,v 1.17 1998/08/03 19:41:31 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -399,6 +399,7 @@ typedef struct IndexScanState
CommonState cstate; /* its first field is NodeTag */
int iss_NumIndices;
int iss_IndexPtr;
+ int iss_MarkIndexPtr;
ScanKey *iss_ScanKeys;
int *iss_NumScanKeys;
Pointer iss_RuntimeKeyInfo;