mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 08:20:55 -05:00
Fix error message in RemoveWalSummaryIfOlderThan()
A failing unlink() was reporting an incorrect error message, referring to stat(). Author: Man Zeng <zengman@halodbtech.com> Reviewed-by: Junwang Zhao <zhjwpku@gmail.com> Discussion: https://postgr.es/m/tencent_3BBE865C5F49D452360FF190@qq.com Backpath-through: 17
This commit is contained in:
parent
d46aa32ea5
commit
a9afa021e9
1 changed files with 1 additions and 1 deletions
|
|
@ -251,7 +251,7 @@ RemoveWalSummaryIfOlderThan(WalSummaryFile *ws, time_t cutoff_time)
|
|||
if (unlink(path) != 0)
|
||||
ereport(ERROR,
|
||||
(errcode_for_file_access(),
|
||||
errmsg("could not stat file \"%s\": %m", path)));
|
||||
errmsg("could not remove file \"%s\": %m", path)));
|
||||
ereport(DEBUG2,
|
||||
(errmsg_internal("removing file \"%s\"", path)));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue