aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-08-06 03:42:21 +0000
committerBruce Momjian <bruce@momjian.us>1997-08-06 03:42:21 +0000
commitf5f366e18829c982273540d88a1ac81c9c85d401 (patch)
tree347fc45caa2420d381e963d6b95bd6109085a163 /src/include/nodes/execnodes.h
parent3bea7b138bbdf6129b36fbdab158526544262980 (diff)
downloadpostgresql-f5f366e18829c982273540d88a1ac81c9c85d401.tar.gz
postgresql-f5f366e18829c982273540d88a1ac81c9c85d401.zip
Allow internal sorts to be stored in memory rather than in files.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 3e01132faa3..ff01ff5a62e 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.6 1996/11/04 08:52:54 scrappy Exp $
+ * $Id: execnodes.h,v 1.7 1997/08/06 03:42:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -605,7 +605,7 @@ typedef struct SortState {
CommonScanState csstate; /* its first field is NodeTag */
bool sort_Flag;
ScanKey sort_Keys;
- Relation sort_TempRelation;
+ bool cleaned;
} SortState;
/* ----------------