pgsql: Remove unused parameter in lookup_var_attr_stats

From: Richard Guo <rguo(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove unused parameter in lookup_var_attr_stats
Date: 2025-01-07 02:26:09
Message-ID: E1tUzIH-000FUg-62@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove unused parameter in lookup_var_attr_stats

The parameter 'rel' in lookup_var_attr_stats was once used to draw an
ERROR when ANALYZE failed to acquire sufficient data to build extended
statistics. bf2a691e0 changed the logic to raise a WARNING in the
caller instead. As a result, this parameter is no longer needed and
can be removed. Since this is a static function, we can always easily
reintroduce the parameter if it's ever needed in the future.

Author: Ilia Evdokimov
Reviewed-by: Fabrízio de Royes Mello
Discussion: https://postgr.es/m/b3880f22-5808-4206-88d4-1553a81c3440@tantorlabs.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2f8b4007dbbac5aa9605414974c802e415176df4

Modified Files
--------------
src/backend/statistics/extended_stats.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Geoghegan 2025-01-07 15:30:01 pgsql: nbtree: Simplify _bt_first parallel scan handling.
Previous Message Nathan Bossart 2025-01-06 21:02:10 pgsql: Allow changing autovacuum_max_workers without restarting.