From 23e5b16c71f2706978c5f54aabd28ed23a54b6a5 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 17 Jul 2011 14:19:31 -0400 Subject: Add temp_file_limit GUC parameter to constrain temporary file space usage. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The limit is enforced against the total amount of temp file space used by each session. Mark Kirkwood, reviewed by Cédric Villemain and Tatsuo Ishii --- src/include/utils/guc_tables.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/utils/guc_tables.h') diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h index 7f8c69fcf4d..d3b25812a02 100644 --- a/src/include/utils/guc_tables.h +++ b/src/include/utils/guc_tables.h @@ -59,6 +59,7 @@ enum config_group CONN_AUTH_SECURITY, RESOURCES, RESOURCES_MEM, + RESOURCES_DISK, RESOURCES_KERNEL, RESOURCES_VACUUM_DELAY, RESOURCES_BGWRITER, -- cgit v1.2.3