diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-06-06 14:46:53 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-06-06 14:47:51 -0400 |
commit | 6c997712cfed99dbf226ecbcb47c1dbf5673e5c4 (patch) | |
tree | 6a65367627cfa1799ba251d96b6cbd2565594824 /src | |
parent | 790259528fd1d4e04d1f95736b209b110858e12d (diff) |
Fix function code in error report
This bug causes a lseek() failure to be reported as a "could not open"
failure in the error message, muddling bug reports. I introduced this
copy-and-pasteo in commit 78e122010422.
Noticed while reviewing code for bug report #15221, from lily liang. In
version 10 the affected function is only used by multixact.c and
commit_ts, and only in corner-case circumstances, neither of which are
involved in the reported bug (a pg_subtrans failure.)
Author: Álvaro Herrera
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/slru.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/slru.c b/src/backend/access/transam/slru.c index 90c7cf56e63..e098cebabf0 100644 --- a/src/backend/access/transam/slru.c +++ b/src/backend/access/transam/slru.c @@ -598,7 +598,7 @@ SimpleLruDoesPhysicalPageExist(SlruCtl ctl, int pageno) if ((endpos = lseek(fd, 0, SEEK_END)) < 0) { - slru_errcause = SLRU_OPEN_FAILED; + slru_errcause = SLRU_SEEK_FAILED; slru_errno = errno; SlruReportIOError(ctl, pageno, 0); } |