summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorVadim B. Mikheev1997-10-15 06:36:36 +0000
committerVadim B. Mikheev1997-10-15 06:36:36 +0000
commit78351f422bc0aa97216c9fbbd998fbc948e82b24 (patch)
tree8a6b6f0479caa79b46e43fcc5b53e5f222c6ac05 /src/include
parent9acf938c10a3bd5c99f95d6965800cdbd54e573f (diff)
Fix for backward cursors with ORDER BY.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/psort.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h
index 2e4060ef560..e5c57681c10 100644
--- a/src/include/utils/psort.h
+++ b/src/include/utils/psort.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: psort.h,v 1.13 1997/09/18 14:42:35 vadim Exp $
+ * $Id: psort.h,v 1.14 1997/10/15 06:36:36 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -62,6 +62,7 @@ typedef struct Psortstate
long psort_current; /* could be file offset, or array index */
long psort_saved; /* could be file offset, or array index */
bool using_tape_files;
+ bool all_fetched; /* this is for cursors */
HeapTuple *memtuples;
} Psortstate;