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
5ff95666
Commit
5ff95666
authored
Jul 11, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove postgresql.conf of 'info' as a valid client_min_messages level.
parent
7b0f060d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
doc/src/sgml/plpgsql.sgml
doc/src/sgml/plpgsql.sgml
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+5
-1
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
No files found.
doc/src/sgml/plpgsql.sgml
View file @
5ff95666
<!--
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.
39 2004/07/04 02:48:52 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.
40 2004/07/11 21:48:24 momjian
Exp $
-->
<chapter id="plpgsql">
...
...
@@ -2120,7 +2120,7 @@ RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="pa
</synopsis>
Possible levels are <literal>DEBUG</literal>,
<literal>LOG</literal>,
<literal>INFO</literal>,
<literal>LOG</literal>,
<literal>NOTICE</literal>, <literal>WARNING</literal>,
and <literal>EXCEPTION</literal>.
<literal>EXCEPTION</literal> raises an error and aborts the current
...
...
src/backend/utils/misc/guc.c
View file @
5ff95666
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.21
5 2004/07/11 21:34:00
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.21
6 2004/07/11 21:48:25
momjian Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -5210,6 +5210,10 @@ assign_msglvl(int *var, const char *newval, bool doit, GucSource source)
if
(
doit
)
(
*
var
)
=
LOG
;
}
/*
* Client_min_messages always prints 'info', but
* we allow it as a value anyway.
*/
else
if
(
pg_strcasecmp
(
newval
,
"info"
)
==
0
)
{
if
(
doit
)
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
5ff95666
...
...
@@ -167,7 +167,7 @@
#client_min_messages = notice # Values, in order of decreasing detail:
# debug5, debug4, debug3, debug2, debug1,
# log,
info,
notice, warning, error
# log, notice, warning, error
#log_min_messages = notice # Values, in order of decreasing detail:
# debug5, debug4, debug3, debug2, debug1,
...
...
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