pgsql: Use bitwise rotate functions in more places - Mailing list pgsql-committers

From John Naylor
Subject pgsql: Use bitwise rotate functions in more places
Date
Msg-id E1nLff2-00037F-De@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use bitwise rotate functions in more places

There were a number of places in the code that used bespoke bit-twiddling
expressions to do bitwise rotation. While we've had pg_rotate_right32()
for a while now, we hadn't gotten around to standardizing on that. Do so
now. Since many potential call sites look more natural with the "left"
equivalent, add that function too.

Reviewed by Tom Lane and Yugo Nagata

Discussion:
https://www.postgresql.org/message-id/CAFBsxsH7c1LC0CGZ0ADCBXLHU5-%3DKNXx-r7tHYPAW51b2HK4Qw%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/4b35408f1ed59dd590f683ae0f015bbaf3b84d3d

Modified Files
--------------
src/backend/executor/execGrouping.c     |  4 ++--
src/backend/executor/nodeHash.c         |  4 ++--
src/backend/executor/nodeMemoize.c      |  8 ++++----
src/backend/utils/adt/jsonb_util.c      |  3 ++-
src/backend/utils/adt/multirangetypes.c |  3 ++-
src/backend/utils/adt/rangetypes.c      |  3 ++-
src/backend/utils/cache/catcache.c      | 14 ++++----------
src/common/hashfn.c                     |  4 ++--
src/include/port/pg_bitutils.h          | 10 ++++++++--
9 files changed, 28 insertions(+), 25 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: doc: Simplify description of --with-lz4
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Fix uninitialized variable.