Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0764f413
Commit
0764f413
authored
Jan 09, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Have log_temp_files be in kilobytes, remove trace call.
parent
d64995aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+3
-3
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
No files found.
doc/src/sgml/config.sgml
View file @
0764f413
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.10
0 2007/01/09 21:31:14
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.10
1 2007/01/09 22:16:46
momjian Exp $ -->
<chapter Id="runtime-config">
<title>Server Configuration</title>
...
...
@@ -2930,7 +2930,7 @@ SELECT * FROM parent WHERE key = 2400;
Controls whether temporary files are logged when deleted.
A value of zero logs all temporary files, and positive
values log only files whose size is equal or greater than
the specified number of bytes. Temporary files can be
the specified number of
kilo
bytes. Temporary files can be
created for sorts, hashes, and temporary results. The
default is <literal>-1</> (off).
</para>
...
...
src/backend/utils/misc/guc.c
View file @
0764f413
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.36
6 2007/01/09 21:31:14
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.36
7 2007/01/09 22:16:46
momjian Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -1664,9 +1664,9 @@ static struct config_int ConfigureNamesInt[] =
{
{
"log_temp_files"
,
PGC_USERSET
,
LOGGING_WHAT
,
gettext_noop
(
"Log the use of temporary files larger than this
size
."
),
gettext_noop
(
"Log the use of temporary files larger than this
number of kilobytes
."
),
gettext_noop
(
"Zero logs all files. The default is -1 (turning this feature off)."
),
NULL
GUC_UNIT_KB
},
&
log_temp_files
,
-
1
,
-
1
,
INT_MAX
,
NULL
,
NULL
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
0764f413
...
...
@@ -334,7 +334,7 @@
#log_hostname = off
#log_temp_files = -1 # Log temporary files equal or larger
# than the specified number of
bytes.
# than the specified number of
kilobytes.
# -1 disables; 0 logs all temp files
#---------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment