aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-10-18 22:59:37 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-10-18 22:59:37 +0000
commitb33a73226487ac1ea045c6e52b4a22d1451d0895 (patch)
tree7208b9da94290510647cc2f890dfdc840625e71f /src/include
parent48f3d7785821c4464d10f6f802129d6eaa817a7e (diff)
downloadpostgresql-b33a73226487ac1ea045c6e52b4a22d1451d0895.tar.gz
postgresql-b33a73226487ac1ea045c6e52b4a22d1451d0895.zip
Improve trace_sort code to also show the total memory or disk space used.
Per request from Marc.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/logtape.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/logtape.h b/src/include/utils/logtape.h
index ffe6d6845aa..4e20ba92a2b 100644
--- a/src/include/utils/logtape.h
+++ b/src/include/utils/logtape.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/utils/logtape.h,v 1.12 2004/12/31 22:03:46 pgsql Exp $
+ * $PostgreSQL: pgsql/src/include/utils/logtape.h,v 1.13 2005/10/18 22:59:37 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -38,5 +38,6 @@ extern bool LogicalTapeSeek(LogicalTapeSet *lts, int tapenum,
long blocknum, int offset);
extern void LogicalTapeTell(LogicalTapeSet *lts, int tapenum,
long *blocknum, int *offset);
+extern long LogicalTapeSetBlocks(LogicalTapeSet *lts);
#endif /* LOGTAPE_H */