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
f5c2f5a8
Commit
f5c2f5a8
authored
Sep 04, 2013
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add GUC descriptions for compile-time postgresql.conf settings
Previous text was "No description available". Tianyin Xu
parent
66d85c53
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+8
-8
No files found.
src/backend/utils/misc/guc.c
View file @
f5c2f5a8
...
@@ -997,7 +997,7 @@ static struct config_bool ConfigureNamesBool[] =
...
@@ -997,7 +997,7 @@ static struct config_bool ConfigureNamesBool[] =
#ifdef BTREE_BUILD_STATS
#ifdef BTREE_BUILD_STATS
{
{
{
"log_btree_build_stats"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"log_btree_build_stats"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description available
."
),
gettext_noop
(
"
Logs system resource usage statistics (memory and CPU) on various B-tree operations
."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
@@ -1071,7 +1071,7 @@ static struct config_bool ConfigureNamesBool[] =
...
@@ -1071,7 +1071,7 @@ static struct config_bool ConfigureNamesBool[] =
#ifdef LOCK_DEBUG
#ifdef LOCK_DEBUG
{
{
{
"trace_locks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"trace_locks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description availabl
e."
),
gettext_noop
(
"
Emits information about lock usag
e."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
@@ -1081,7 +1081,7 @@ static struct config_bool ConfigureNamesBool[] =
...
@@ -1081,7 +1081,7 @@ static struct config_bool ConfigureNamesBool[] =
},
},
{
{
{
"trace_userlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"trace_userlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description availabl
e."
),
gettext_noop
(
"
Emits information about user lock usag
e."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
@@ -1091,7 +1091,7 @@ static struct config_bool ConfigureNamesBool[] =
...
@@ -1091,7 +1091,7 @@ static struct config_bool ConfigureNamesBool[] =
},
},
{
{
{
"trace_lwlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"trace_lwlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description availabl
e."
),
gettext_noop
(
"
Emits information about lightweight lock usag
e."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
@@ -1101,7 +1101,7 @@ static struct config_bool ConfigureNamesBool[] =
...
@@ -1101,7 +1101,7 @@ static struct config_bool ConfigureNamesBool[] =
},
},
{
{
{
"debug_deadlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"debug_deadlocks"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description available
."
),
gettext_noop
(
"
Dumps information about all current locks when a deadlock timeout occurs
."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
@@ -1848,8 +1848,8 @@ static struct config_int ConfigureNamesInt[] =
...
@@ -1848,8 +1848,8 @@ static struct config_int ConfigureNamesInt[] =
#ifdef LOCK_DEBUG
#ifdef LOCK_DEBUG
{
{
{
"trace_lock_oidmin"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"trace_lock_oidmin"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description available
."
),
gettext_noop
(
"
Sets the minimum OID of tables for tracking locks
."
),
NULL
,
gettext_noop
(
"Is used to avoid output on system tables."
)
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
&
Trace_lock_oidmin
,
&
Trace_lock_oidmin
,
...
@@ -1858,7 +1858,7 @@ static struct config_int ConfigureNamesInt[] =
...
@@ -1858,7 +1858,7 @@ static struct config_int ConfigureNamesInt[] =
},
},
{
{
{
"trace_lock_table"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
{
"trace_lock_table"
,
PGC_SUSET
,
DEVELOPER_OPTIONS
,
gettext_noop
(
"
No description available
."
),
gettext_noop
(
"
Sets the OID of the table with unconditionally lock tracing
."
),
NULL
,
NULL
,
GUC_NOT_IN_SAMPLE
GUC_NOT_IN_SAMPLE
},
},
...
...
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