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
0b4bf853
Commit
0b4bf853
authored
Sep 13, 2006
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make logging of extended-protocol commands a bit more consistent, per
discussion with Guillaume Smet.
parent
33d3ad46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+6
-5
No files found.
src/backend/tcop/postgres.c
View file @
0b4bf853
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.50
8 2006/09/08 15:55:53
tgl Exp $
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.50
9 2006/09/13 21:59:04
tgl Exp $
*
*
* NOTES
* NOTES
* this is the "main" module of the postgres backend and
* this is the "main" module of the postgres backend and
...
@@ -1610,10 +1610,11 @@ exec_bind_message(StringInfo input_message)
...
@@ -1610,10 +1610,11 @@ exec_bind_message(StringInfo input_message)
break
;
break
;
case
2
:
case
2
:
ereport
(
LOG
,
ereport
(
LOG
,
(
errmsg
(
"duration: %s ms bind %s
to
%s: %s"
,
(
errmsg
(
"duration: %s ms bind %s
%s
%s: %s"
,
msec_str
,
msec_str
,
*
portal_name
?
portal_name
:
"<unnamed>"
,
*
stmt_name
?
stmt_name
:
"<unnamed>"
,
*
stmt_name
?
stmt_name
:
"<unnamed>"
,
*
portal_name
?
"/"
:
""
,
*
portal_name
?
portal_name
:
""
,
pstmt
->
query_string
?
pstmt
->
query_string
:
"<source not stored>"
),
pstmt
->
query_string
?
pstmt
->
query_string
:
"<source not stored>"
),
errdetail_params
(
params
)));
errdetail_params
(
params
)));
break
;
break
;
...
@@ -1740,8 +1741,8 @@ exec_execute_message(const char *portal_name, long max_rows)
...
@@ -1740,8 +1741,8 @@ exec_execute_message(const char *portal_name, long max_rows)
ereport
(
LOG
,
ereport
(
LOG
,
(
errmsg
(
"%s %s%s%s%s%s"
,
(
errmsg
(
"%s %s%s%s%s%s"
,
execute_is_fetch
?
execute_is_fetch
?
_
(
"
statement:
execute fetch from"
)
:
_
(
"execute fetch from"
)
:
_
(
"
statement:
execute"
),
_
(
"execute"
),
prepStmtName
,
prepStmtName
,
*
portal_name
?
"/"
:
""
,
*
portal_name
?
"/"
:
""
,
*
portal_name
?
portal_name
:
""
,
*
portal_name
?
portal_name
:
""
,
...
...
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