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
0b620e33
Commit
0b620e33
authored
Sep 22, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server_min_messages and friends should have valid values at bootup.
parent
c328b6dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+4
-4
No files found.
src/backend/utils/misc/guc.c
View file @
0b620e33
...
...
@@ -5,7 +5,7 @@
* command, configuration file, and command line options.
* See src/backend/utils/misc/README for more information.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.9
5 2002/09/12 14:03:45
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.9
6 2002/09/22 19:52:38
tgl Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
@@ -102,15 +102,15 @@ bool Australian_timezones = false;
bool
Password_encryption
=
true
;
int
log_min_error_statement
;
int
log_min_error_statement
=
ERROR
;
char
*
log_min_error_statement_str
=
NULL
;
const
char
log_min_error_statement_str_default
[]
=
"error"
;
int
server_min_messages
;
int
server_min_messages
=
NOTICE
;
char
*
server_min_messages_str
=
NULL
;
const
char
server_min_messages_str_default
[]
=
"notice"
;
int
client_min_messages
;
int
client_min_messages
=
NOTICE
;
char
*
client_min_messages_str
=
NULL
;
const
char
client_min_messages_str_default
[]
=
"notice"
;
...
...
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