From 391c3811a2b7f4cd666e1b4f35534046a862abbb Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 3 Feb 2004 17:34:04 +0000 Subject: Rename SortMem and VacuumMem to work_mem and maintenance_work_mem. Make btree index creation and initial validation of foreign-key constraints use maintenance_work_mem rather than work_mem as their memory limit. Add some code to guc.c to allow these variables to be referenced by their old names in SHOW and SET commands, for backwards compatibility. --- doc/src/sgml/ref/postgres-ref.sgml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'doc/src/sgml/ref/postgres-ref.sgml') diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml index 3ae6003120b..cfb16a78686 100644 --- a/doc/src/sgml/ref/postgres-ref.sgml +++ b/doc/src/sgml/ref/postgres-ref.sgml @@ -1,5 +1,5 @@ @@ -41,7 +41,7 @@ PostgreSQL documentation -s -tpaplex - -S sort-mem + -S work-mem -W seconds --name=value database @@ -64,7 +64,7 @@ PostgreSQL documentation -s -tpaplex - -S sort-mem + -S work-mem -v protocol -W seconds --name=value @@ -197,16 +197,13 @@ PostgreSQL documentation - sort-mem + work-mem Specifies the amount of memory to be used by internal sorts and hashes - before resorting to temporary disk files. The value is specified in - kilobytes, and defaults to 1024. Note that for a complex query, - several sorts and/or hashes might be running in parallel, and each one - will be allowed to use as much as - sort-mem kilobytes - before it starts to put data into temporary files. + before resorting to temporary disk files. See the description of the + work_mem configuration parameter in . -- cgit v1.2.3