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
f73b7651
Commit
f73b7651
authored
Aug 06, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a comment about the initial default value of max_stack_depth.
parent
901c0ea2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+6
-1
No files found.
src/backend/utils/misc/guc.c
View file @
f73b7651
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.56
5 2010/07/22 01:22:33 rhaas
Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.56
6 2010/08/06 14:51:33 tgl
Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -1520,6 +1520,11 @@ static struct config_int ConfigureNamesInt[] =
16384
,
1024
,
MAX_KILOBYTES
,
NULL
,
NULL
},
/*
* We use the hopefully-safely-small value of 100kB as the compiled-in
* default for max_stack_depth. InitializeGUCOptions will increase it if
* possible, depending on the actual platform-specific stack limit.
*/
{
{
"max_stack_depth"
,
PGC_SUSET
,
RESOURCES_MEM
,
gettext_noop
(
"Sets the maximum stack depth, in kilobytes."
),
...
...
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