summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane2005-10-03 22:55:56 +0000
committerTom Lane2005-10-03 22:55:56 +0000
commit53e47cdd799963951c371ea8158996be3b6e603a (patch)
treec63a3ef6fc454dc9ac25eab13ea37318456726b0 /src/include
parent12992ab37a05dbcbff5e0629a037f86f5dbb2964 (diff)
Add a trace_sort option to help with measuring resource usage of external
sort operations. Per recent discussion. Simon Riggs and Tom Lane.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/pg_config_manual.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h
index b36714b87bd..bf82771d45c 100644
--- a/src/include/pg_config_manual.h
+++ b/src/include/pg_config_manual.h
@@ -6,7 +6,7 @@
* for developers. If you edit any of these, be sure to do a *full*
* rebuild (and an initdb if noted).
*
- * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.16 2005/03/29 03:01:32 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.17 2005/10/03 22:55:56 tgl Exp $
*------------------------------------------------------------------------
*/
@@ -230,10 +230,14 @@
/* #define WAL_DEBUG */
/*
+ * Enable tracing of resource consumption during sort operations;
+ * see also the trace_sort GUC var. For 8.1 this is enabled by default.
+ */
+#define TRACE_SORT 1
+
+/*
* Other debug #defines (documentation, anyone?)
*/
-/* #define IPORTAL_DEBUG */
-/* #define HEAPDEBUGALL */
+/* #define HEAPDEBUGALL */
/* #define ACLDEBUG */
/* #define RTDEBUG */
-/* #define GISTDEBUG */