aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-05-22 16:52:49 +0000
committerBruce Momjian <bruce@momjian.us>2001-05-22 16:52:49 +0000
commitf08245cfe3618890b966f06394619f26f4c416a1 (patch)
tree4b260a277f8051d52564e4665201b26e963d2f47 /src
parentefcecd9eca884776137b156a3f1f93c23b98a648 (diff)
downloadpostgresql-f08245cfe3618890b966f06394619f26f4c416a1.tar.gz
postgresql-f08245cfe3618890b966f06394619f26f4c416a1.zip
I found the answer to this: the partition had filled up, and so the problem
was lack of disk space. Oliver Elphick
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index f6394b115d7..cf213ada268 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.65 2001/04/05 16:55:21 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.66 2001/05/22 16:52:49 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1334,7 +1334,7 @@ XLogFileInit(uint32 log, uint32 seg,
unlink(tmppath);
errno = save_errno;
- elog(STOP, "ZeroFill(%s) failed: %m", tmppath);
+ elog(STOP, "ZeroFill failed to create or write %s: %m", tmppath);
}
}