diff options
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/execnodes.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/plannodes.h | 4 |
2 files changed, 5 insertions, 3 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; /* ---------------- diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index b02a370facd..6e786c34f0e 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.5 1996/11/05 08:18:44 scrappy Exp $ + * $Id: plannodes.h,v 1.6 1997/08/06 03:42:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -265,6 +265,8 @@ typedef struct Sort { Oid tempid; int keycount; SortState *sortstate; + void *psortstate; + bool cleaned; } Sort; /* ---------------- |
