Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit eee381e

Browse files
committed
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 78e1220. 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
1 parent 3f85c62 commit eee381e

File tree

1 file changed

+1
-1
lines changed
  • src/backend/access/transam

1 file changed

+1
-1
lines changed

src/backend/access/transam/slru.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ SimpleLruDoesPhysicalPageExist(SlruCtl ctl, int pageno)
614614

615615
if ((endpos = lseek(fd, 0, SEEK_END)) < 0)
616616
{
617-
slru_errcause = SLRU_OPEN_FAILED;
617+
slru_errcause = SLRU_SEEK_FAILED;
618618
slru_errno = errno;
619619
SlruReportIOError(ctl, pageno, 0);
620620
}

0 commit comments

Comments
 (0)