From f5f366e18829c982273540d88a1ac81c9c85d401 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 6 Aug 1997 03:42:21 +0000 Subject: Allow internal sorts to be stored in memory rather than in files. --- src/include/nodes/execnodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/nodes/execnodes.h') diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 3e01132faa..ff01ff5a62 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; /* ---------------- -- cgit v1.2.1