pgsql: Remove useless (and broken) logging logic in memory context func

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove useless (and broken) logging logic in memory context func
Date: 2020-04-23 19:27:44
Message-ID: E1jRhVg-0000al-D5@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove useless (and broken) logging logic in memory context functions.

Nobody really uses this stuff, especially not since we created
valgrind-based infrastructure that does the same thing better.
It is thus unsurprising that the generation.c and slab.c versions
were actually broken. Rather than fix 'em, let's just remove 'em.

Alexander Lakhin

Discussion: https://postgr.es/m/8936216c-3492-3f6e-634b-d638fddc5f91@gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/utils/mmgr/aset.c | 26 --------------------------
src/backend/utils/mmgr/generation.c | 20 --------------------
src/backend/utils/mmgr/slab.c | 20 --------------------
3 files changed, 66 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2020-04-23 19:38:23 pgsql: Remove ACLDEBUG #define and associated code.
Previous Message Tom Lane 2020-04-23 19:12:51 pgsql: Doc: update section 9.12 for new function table layout.