summaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2022-08-20 11:40:44 +1200
committerDavid Rowley <drowley@postgresql.org>2022-08-20 11:40:44 +1200
commitf01592f9157707c4de1f00a0e0dc5a7e8fa8f1d5 (patch)
tree1995e280a06a798da836da8442464fc4fb9f149a /src/backend/access/gist/gist.c
parent3097bde7dd1d9e7b1127b24935e70ca4609e22b2 (diff)
downloadpostgresql-f01592f9157707c4de1f00a0e0dc5a7e8fa8f1d5.tar.gz
Remove shadowed local variables that are new in v15
Compiling with -Wshadow=compatible-local yields quite a few warnings about local variables being shadowed by compatible local variables in an inner scope. Of course, this is perfectly valid in C, but we have had bugs in the past as a result of developers failing to notice this. af7d270dd is a recent example. Here we do a cleanup of warnings we receive from -Wshadow=compatible-local for code which is new to PostgreSQL 15. We've yet to have the discussion about if we actually ever want to run that as a standard compilation flag. We'll need to at least get the number of warnings down to something easier to manage before we can realistically consider if we want this or not. This commit is the first step towards reducing the warnings. The changes being made here are all fairly trivial. Because of that, and the fact that v15 is still in beta, this is being back-patched into 15. It seems more risky not to do this as the risk of future bugs is increased by the additional conflicts that this commit could cause for any future bug fixes touching the same areas as this commit. Author: Justin Pryzby Discussion: https://postgr.es/m/20220817145434.GC26426%40telsasoft.com Backpatch-through: 15
Diffstat (limited to 'src/backend/access/gist/gist.c')
0 files changed, 0 insertions, 0 deletions