it vary with BLCKSZ as before. This agrees with what the documentation says,
and avoids a regression test problem when BLCKSZ is larger than default.
Per recent discussion.
-
+
Server Configuration
Specifies the amount of memory to be used by internal sort operations
- and hash tables before switching to temporary disk files. The value is
+ and hash tables before switching to temporary disk files. The value
defaults to one megabyte (1MB>).
Note that for a complex query, several sort or hash operations might be
running in parallel; each one will be allowed to use as much memory
* Written by Peter Eisentraut
.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.449 2008/04/29 20:44:49 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.450 2008/05/01 19:55:40 tgl Exp $
*
*--------------------------------------------------------------------
*/
GUC_UNIT_KB
},
&work_mem,
- 1024, 8 * BLCKSZ / 1024, MAX_KILOBYTES, NULL, NULL
+ 1024, 64, MAX_KILOBYTES, NULL, NULL
},
{