diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-06 11:50:40 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-06 11:50:40 -0400 |
commit | 666e9a90f09a1ab89959774273597764e6e0f9ad (patch) | |
tree | 07eb0e5dd757a1583907d0f11ae6bba675576fc6 /src/backend/utils/adt/numeric.c | |
parent | cd153b54eb6542d0e0b4addf1f10a1b34a328e17 (diff) | |
download | postgresql-666e9a90f09a1ab89959774273597764e6e0f9ad.tar.gz postgresql-666e9a90f09a1ab89959774273597764e6e0f9ad.zip |
Remove useless lstat() call in pg_rewind.
This is duplicative of an lstat that was just done by the calling
function (traverse_datadir), besides which we weren't really doing
anything with the results. There's not much point in checking to
see if someone removed the file since the previous lstat, since the
FILE_ACTION_REMOVE code would have to deal with missing-file cases
anyway. Moreover, the "exists = false" assignment was a dead store;
nothing was done with that value later.
A syscall saved is a syscall earned, so back-patch to 9.5
where this code was introduced.
Discussion: https://postgr.es/m/1221796.1599329320@sss.pgh.pa.us
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
0 files changed, 0 insertions, 0 deletions