diff options
| author | Bruce Momjian <bruce@momjian.us> | 1997-08-19 21:40:56 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1997-08-19 21:40:56 +0000 |
| commit | 1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b (patch) | |
| tree | 8d3a5dac9207f22c3afb8afb563d54f88774deb3 /src/include/utils/psort.h | |
| parent | b992e200b8872ecb6652ec85111995f8d4c5aee0 (diff) | |
| download | postgresql-1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b.tar.gz | |
Make functions static where possible, enclose unused functions in #ifdef NOT_USED.
Diffstat (limited to 'src/include/utils/psort.h')
| -rw-r--r-- | src/include/utils/psort.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h index c6c6c29fb9..d7f979c8ff 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.6 1997/08/06 07:02:49 momjian Exp $ + * $Id: psort.h,v 1.7 1997/08/19 21:40:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -96,22 +96,9 @@ if (1) CODE; else /* psort.c */ extern bool psort_begin(Sort *node, int nkeys, ScanKey key); -extern void inittapes(Sort *node); -extern void resetpsort(void); -extern void initialrun(Sort *node, bool *empty); -extern bool createrun(Sort *node, FILE *file, bool *empty); -extern HeapTuple tuplecopy(HeapTuple tup); -extern FILE *mergeruns(Sort *node); -extern void merge(Sort *node, struct tape *dest); - -extern void dumptuples(FILE *file, Sort *node); extern HeapTuple psort_grabtuple(Sort *node); extern void psort_markpos(Sort *node); extern void psort_restorepos(Sort *node); extern void psort_end(Sort *node); -extern FILE *gettape(void); -extern void resettape(FILE *file); -extern void destroytape(FILE *file); - #endif /* PSORT_H */ |
