diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-09-18 05:42:01 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-09-18 05:42:01 +0000 |
commit | bbe2c10c140803881125c516bcc172363eb698d8 (patch) | |
tree | 9b9f018f8221aed3b56316616bf60d1a8da3709b /src | |
parent | 7ffd2c09c8e5b234b17893e087e5715c1abe6327 (diff) | |
download | postgresql-bbe2c10c140803881125c516bcc172363eb698d8.tar.gz postgresql-bbe2c10c140803881125c516bcc172363eb698d8.zip |
Addded to Psortstate:
lt_tupcount - number of tuples in struct leftist *Tuples
lasttuple - last tuple put to disk by createfirstrun()
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/psort.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h index 5e1c97052da..9f4db17437e 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.11 1997/09/15 14:29:01 vadim Exp $ + * $Id: psort.h,v 1.12 1997/09/18 05:42:01 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -57,6 +57,8 @@ 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 */ |