提交 39725e56 编写于 作者: T Tom Lane

Add some elog(DEBUG)'s to help diagnose mdblindwrt failures.

上级 92286bd5
......@@ -8,10 +8,11 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.67 2000/04/12 17:15:41 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.68 2000/05/25 23:30:20 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/file.h>
......@@ -609,8 +610,11 @@ mdblindwrt(char *dbname,
seekpos = (long) (BLCKSZ * (blkno));
#endif
errno = 0;
if (lseek(fd, seekpos, SEEK_SET) != seekpos)
{
elog(DEBUG, "mdblindwrt: lseek(%ld) failed: %m", seekpos);
close(fd);
return SM_FAIL;
}
......@@ -619,13 +623,22 @@ mdblindwrt(char *dbname,
/* write and optionally sync the block */
if (write(fd, buffer, BLCKSZ) != BLCKSZ)
{
elog(DEBUG, "mdblindwrt: write() failed: %m");
status = SM_FAIL;
}
else if (dofsync &&
pg_fsync(fd) < 0)
{
elog(DEBUG, "mdblindwrt: fsync() failed: %m");
status = SM_FAIL;
}
if (close(fd) < 0)
{
elog(DEBUG, "mdblindwrt: close() failed: %m");
status = SM_FAIL;
}
return status;
}
......@@ -1122,6 +1135,9 @@ _mdfd_blind_getseg(char *dbname, char *relname, Oid dbid, Oid relid,
fd = open(path, O_RDWR | O_BINARY, 0600);
#endif
if (fd < 0)
elog(DEBUG, "_mdfd_blind_getseg: couldn't open %s: %m", path);
pfree(path);
return fd;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册