pgsql: Use pg_memory_is_all_zeros() in pgstatfuncs.c.

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use pg_memory_is_all_zeros() in pgstatfuncs.c.
Date: 2024-12-11 20:19:59
Message-ID: E1tLTBe-002FMS-Fv@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use pg_memory_is_all_zeros() in pgstatfuncs.c.

There are a few places in this file that use memset() and memcmp()
to determine whether a section of memory is all zeros. This commit
modifies them to use pg_memory_is_all_zeros() instead. These
aren't expected to be hot code paths, but this may optimize them a
bit. Plus, this allows us to remove some variables that were only
needed for the memset() and memcmp().

Author: Bertrand Drouvot
Reviewed-by: Michael Paquier
Discussion: https://postgr.es/m/Z1hNubHfvMxlW6eu%40ip-10-97-1-34.eu-west-3.compute.internal

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e8d59294282bd01bc06f2af13c79b9155024a917

Modified Files
--------------
src/backend/utils/adt/pgstatfuncs.c | 18 ++++++------------
1 file changed, 6 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message David Rowley 2024-12-11 20:50:33 pgsql: Fix further fallout from EXPLAIN ANALYZE BUFFERS change
Previous Message Guillaume Lelarge 2024-12-11 20:18:44 Re: pgsql: Enable BUFFERS with EXPLAIN ANALYZE by default