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
5ca3d50d
Commit
5ca3d50d
authored
Dec 13, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify log messages
parent
e211470b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+3
-3
src/backend/storage/file/fd.c
src/backend/storage/file/fd.c
+2
-2
No files found.
src/backend/postmaster/postmaster.c
View file @
5ca3d50d
...
...
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.54
8 2007/11/15 22:25:16 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.54
9 2007/12/13 11:55:44 petere
Exp $
*
* NOTES
*
...
...
@@ -1712,7 +1712,7 @@ processCancelRequest(Port *port, void *pkt)
else
/* Right PID, wrong key: no way, Jose */
ereport
(
LOG
,
(
errmsg
(
"
bad
key in cancel request for process %d"
,
(
errmsg
(
"
wrong
key in cancel request for process %d"
,
backendPID
)));
return
;
}
...
...
@@ -1720,7 +1720,7 @@ processCancelRequest(Port *port, void *pkt)
/* No matching backend */
ereport
(
LOG
,
(
errmsg
(
"
bad pid in cancel request for process %d
"
,
(
errmsg
(
"
PID %d in cancel request did not match any process
"
,
backendPID
)));
}
...
...
src/backend/storage/file/fd.c
View file @
5ca3d50d
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.14
1 2007/11/15 21:14:38 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.14
2 2007/12/13 11:55:44 petere
Exp $
*
* NOTES:
*
...
...
@@ -1003,7 +1003,7 @@ FileClose(File file)
{
if
(
filestats
.
st_size
>=
log_temp_files
)
ereport
(
LOG
,
(
errmsg
(
"temp
file: path
\"
%s
\"
size %lu"
,
(
errmsg
(
"temp
orary file: path
\"
%s
\"
,
size %lu"
,
vfdP
->
fileName
,
(
unsigned
long
)
filestats
.
st_size
)));
}
...
...
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