File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 6
6
* for developers. If you edit any of these, be sure to do a *full*
7
7
* rebuild (and an initdb if noted).
8
8
*
9
- * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.34 2008/06/24 17:58:27 tgl Exp $
9
+ * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.35 2008/07/12 02:28:43 tgl Exp $
10
10
*------------------------------------------------------------------------
11
11
*/
12
12
154
154
*------------------------------------------------------------------------
155
155
*/
156
156
157
- /*
158
- * Define this to cause palloc()'d memory to be filled with random data, to
159
- * facilitate catching code that depends on the contents of uninitialized
160
- * memory. Right now, this gets defined automatically if --enable-cassert.
161
- */
162
- #ifdef USE_ASSERT_CHECKING
163
- #define RANDOMIZE_ALLOCATED_MEMORY
164
- #endif
165
-
166
157
/*
167
158
* Define this to cause pfree()'d memory to be cleared immediately, to
168
159
* facilitate catching bugs that refer to already-freed values.
181
172
#define MEMORY_CONTEXT_CHECKING
182
173
#endif
183
174
175
+ /*
176
+ * Define this to cause palloc()'d memory to be filled with random data, to
177
+ * facilitate catching code that depends on the contents of uninitialized
178
+ * memory. Caution: this is horrendously expensive.
179
+ */
180
+ /* #define RANDOMIZE_ALLOCATED_MEMORY */
181
+
184
182
/*
185
183
* Define this to force all parse and plan trees to be passed through
186
184
* copyObject(), to facilitate catching errors and omissions in
You can’t perform that action at this time.
0 commit comments