提交 c96439b5 编写于 作者: T Tom Lane

Don't make --enable-cassert turn on RANDOMIZE_ALLOCATED_MEMORY automatically;

it's just too dang expensive.  Per recent discussion, but I just got my
nose rubbed in it again while doing some performance checking.
上级 960af47e
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* for developers. If you edit any of these, be sure to do a *full* * for developers. If you edit any of these, be sure to do a *full*
* rebuild (and an initdb if noted). * rebuild (and an initdb if noted).
* *
* $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.34 2008/06/24 17:58:27 tgl Exp $ * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.35 2008/07/12 02:28:43 tgl Exp $
*------------------------------------------------------------------------ *------------------------------------------------------------------------
*/ */
...@@ -154,15 +154,6 @@ ...@@ -154,15 +154,6 @@
*------------------------------------------------------------------------ *------------------------------------------------------------------------
*/ */
/*
* Define this to cause palloc()'d memory to be filled with random data, to
* facilitate catching code that depends on the contents of uninitialized
* memory. Right now, this gets defined automatically if --enable-cassert.
*/
#ifdef USE_ASSERT_CHECKING
#define RANDOMIZE_ALLOCATED_MEMORY
#endif
/* /*
* Define this to cause pfree()'d memory to be cleared immediately, to * Define this to cause pfree()'d memory to be cleared immediately, to
* facilitate catching bugs that refer to already-freed values. * facilitate catching bugs that refer to already-freed values.
...@@ -181,6 +172,13 @@ ...@@ -181,6 +172,13 @@
#define MEMORY_CONTEXT_CHECKING #define MEMORY_CONTEXT_CHECKING
#endif #endif
/*
* Define this to cause palloc()'d memory to be filled with random data, to
* facilitate catching code that depends on the contents of uninitialized
* memory. Caution: this is horrendously expensive.
*/
/* #define RANDOMIZE_ALLOCATED_MEMORY */
/* /*
* Define this to force all parse and plan trees to be passed through * Define this to force all parse and plan trees to be passed through
* copyObject(), to facilitate catching errors and omissions in * copyObject(), to facilitate catching errors and omissions in
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册