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
188eda0d
Commit
188eda0d
authored
Sep 11, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consistenly lowercase GUC variable names, in docs and error messages.
parent
8e27be43
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
170 additions
and
170 deletions
+170
-170
doc/src/sgml/charset.sgml
doc/src/sgml/charset.sgml
+4
-4
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+3
-3
doc/src/sgml/perform.sgml
doc/src/sgml/perform.sgml
+2
-2
doc/src/sgml/plpgsql.sgml
doc/src/sgml/plpgsql.sgml
+2
-2
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+155
-155
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
No files found.
doc/src/sgml/charset.sgml
View file @
188eda0d
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.3
8 2003/08/31 17:32:18 petere
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.3
9 2003/09/11 18:30:38 momjian
Exp $ -->
<chapter id="charset">
<chapter id="charset">
<title>Localization</>
<title>Localization</>
...
@@ -769,7 +769,7 @@ char *pg_encoding_to_char(int <replaceable>encoding_id</replaceable>);
...
@@ -769,7 +769,7 @@ char *pg_encoding_to_char(int <replaceable>encoding_id</replaceable>);
<listitem>
<listitem>
<para>
<para>
Using <command>SET
CLIENT_ENCODING
TO</command>.
Using <command>SET
client_encoding
TO</command>.
Setting the client encoding can be done with this SQL command:
Setting the client encoding can be done with this SQL command:
...
@@ -786,13 +786,13 @@ SET NAMES '<replaceable>value</>';
...
@@ -786,13 +786,13 @@ SET NAMES '<replaceable>value</>';
To query the current client encoding:
To query the current client encoding:
<programlisting>
<programlisting>
SHOW
CLIENT_ENCODING
;
SHOW
client_encoding
;
</programlisting>
</programlisting>
To return to the default encoding:
To return to the default encoding:
<programlisting>
<programlisting>
RESET
CLIENT_ENCODING
;
RESET
client_encoding
;
</programlisting>
</programlisting>
</para>
</para>
</listitem>
</listitem>
...
...
doc/src/sgml/func.sgml
View file @
188eda0d
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.17
1 2003/09/11 17:26:20
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.17
2 2003/09/11 18:30:38
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -3435,7 +3435,7 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
...
@@ -3435,7 +3435,7 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
<para>
<para>
Normally the flavor of RE being used is determined by
Normally the flavor of RE being used is determined by
<varname>
REGEX_FLAVOR
</>.
<varname>
regex_flavor
</>.
However, this can be overridden by a <firstterm>director</> prefix.
However, this can be overridden by a <firstterm>director</> prefix.
If an RE of any flavor begins with <literal>***:</>,
If an RE of any flavor begins with <literal>***:</>,
the rest of the RE is taken as an ARE.
the rest of the RE is taken as an ARE.
...
@@ -3762,7 +3762,7 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
...
@@ -3762,7 +3762,7 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
While these differences are unlikely to create a problem for most
While these differences are unlikely to create a problem for most
applications, you can avoid them if necessary by
applications, you can avoid them if necessary by
setting <varname>
REGEX_FLAVOR
</> to <literal>extended</>.
setting <varname>
regex_flavor
</> to <literal>extended</>.
</para>
</para>
</sect3>
</sect3>
...
...
doc/src/sgml/perform.sgml
View file @
188eda0d
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.3
2 2003/09/11 17:31:45
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.3
3 2003/09/11 18:30:38
momjian Exp $
-->
-->
<chapter id="performance-tips">
<chapter id="performance-tips">
...
@@ -603,7 +603,7 @@ SELECT * FROM a, b, c WHERE a.id = b.id AND b.ref = c.id;
...
@@ -603,7 +603,7 @@ SELECT * FROM a, b, c WHERE a.id = b.id AND b.ref = c.id;
<productname>PostgreSQL</productname> planner will switch from exhaustive
<productname>PostgreSQL</productname> planner will switch from exhaustive
search to a <firstterm>genetic</firstterm> probabilistic search
search to a <firstterm>genetic</firstterm> probabilistic search
through a limited number of possibilities. (The switch-over threshold is
through a limited number of possibilities. (The switch-over threshold is
set by the <varname>
GEQO_THRESHOLD
</varname> run-time
set by the <varname>
geqo_threshold
</varname> run-time
parameter.)
parameter.)
The genetic search takes less time, but it won't
The genetic search takes less time, but it won't
necessarily find the best possible plan.
necessarily find the best possible plan.
...
...
doc/src/sgml/plpgsql.sgml
View file @
188eda0d
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/plpgsql.sgml,v 1.2
3 2003/09/11 17:31:45
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/plpgsql.sgml,v 1.2
4 2003/09/11 18:30:38
momjian Exp $
-->
-->
<chapter id="plpgsql">
<chapter id="plpgsql">
...
@@ -1350,7 +1350,7 @@ SELECT * FROM some_func();
...
@@ -1350,7 +1350,7 @@ SELECT * FROM some_func();
allow users to allow users to define set-returning functions
allow users to allow users to define set-returning functions
that do not have this limitation. Currently, the point at
that do not have this limitation. Currently, the point at
which data begins being written to disk is controlled by the
which data begins being written to disk is controlled by the
<varname>
SORT_MEM
</> configuration variable. Administrators
<varname>
sort_mem
</> configuration variable. Administrators
who have sufficient memory to store larger result sets in
who have sufficient memory to store larger result sets in
memory should consider increasing this parameter.
memory should consider increasing this parameter.
</para>
</para>
...
...
doc/src/sgml/runtime.sgml
View file @
188eda0d
This diff is collapsed.
Click to expand it.
src/backend/postmaster/postmaster.c
View file @
188eda0d
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.34
3 2003/09/04 03:38:55
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.34
4 2003/09/11 18:30:39
momjian Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -2609,7 +2609,7 @@ sigusr1_handler(SIGNAL_ARGS)
...
@@ -2609,7 +2609,7 @@ sigusr1_handler(SIGNAL_ARGS)
ereport
(
LOG
,
ereport
(
LOG
,
(
errmsg
(
"checkpoints are occurring too frequently (%d seconds apart)"
,
(
errmsg
(
"checkpoints are occurring too frequently (%d seconds apart)"
,
elapsed_secs
),
elapsed_secs
),
errhint
(
"Consider increasing
CHECKPOINT_SEGMENTS
."
)));
errhint
(
"Consider increasing
'checkpoint_segments'
."
)));
}
}
LastSignalledCheckpoint
=
now
;
LastSignalledCheckpoint
=
now
;
}
}
...
...
src/backend/utils/misc/guc.c
View file @
188eda0d
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.15
6 2003/09/07 15:26:53 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.15
7 2003/09/11 18:30:39 momjian
Exp $
*
*
*--------------------------------------------------------------------
*--------------------------------------------------------------------
*/
*/
...
@@ -1311,7 +1311,7 @@ static struct config_string ConfigureNamesString[] =
...
@@ -1311,7 +1311,7 @@ static struct config_string ConfigureNamesString[] =
{
{
{
"log_error_verbosity"
,
PGC_SUSET
,
LOGGING_WHEN
,
{
"log_error_verbosity"
,
PGC_SUSET
,
LOGGING_WHEN
,
gettext_noop
(
"Controls verbosity of logged messages"
),
gettext_noop
(
"Controls verbosity of logged messages"
),
gettext_noop
(
"Valid values are
TERSE, DEFAULT, and VERBOSE
"
)
gettext_noop
(
"Valid values are
'terse', 'default', and 'verbose'
"
)
},
},
&
log_error_verbosity_str
,
&
log_error_verbosity_str
,
"default"
,
assign_log_error_verbosity
,
NULL
"default"
,
assign_log_error_verbosity
,
NULL
...
...
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