aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1997-09-18 14:42:35 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1997-09-18 14:42:35 +0000
commita6e0803a7ffa374214deca4929865ddaa1c2263d (patch)
treecd5af01c6940e8f8d38d01895c2da16af8cb7e25
parentb0ccd78479bc936599088b555654b39c006d5c84 (diff)
downloadpostgresql-a6e0803a7ffa374214deca4929865ddaa1c2263d.tar.gz
postgresql-a6e0803a7ffa374214deca4929865ddaa1c2263d.zip
No more SortTuplesInTree...
-rw-r--r--src/include/miscadmin.h3
-rw-r--r--src/include/utils/psort.h4
2 files changed, 2 insertions, 5 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index 12c1d762e9d..9ca72848d23 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -11,7 +11,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.15 1997/09/18 05:38:09 vadim Exp $
+ * $Id: miscadmin.h,v 1.16 1997/09/18 14:42:22 vadim Exp $
*
* NOTES
* some of the information in this file will be moved to
@@ -91,7 +91,6 @@ extern char DateFormat[];
extern int fsyncOff;
extern int SortMem;
-extern int SortTuplesInTree;
extern Oid LastOidProcessed; /* for query rewrite */
diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h
index 9f4db17437e..2e4060ef560 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.12 1997/09/18 05:42:01 vadim Exp $
+ * $Id: psort.h,v 1.13 1997/09/18 14:42:35 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -57,8 +57,6 @@ typedef struct Psortstate
int tupcount;
struct leftist *Tuples;
- int lt_tupcount;
- HeapTuple lasttuple;
FILE *psort_grab_file;
long psort_current; /* could be file offset, or array index */