Re: Removing unused parameter in compute_expr_stats

2024-12-26 Thread David Rowley
On Thu, 26 Dec 2024 at 22:41, Ilia Evdokimov wrote: > I'm sharing a small patch that removes an unused parameter (totalrows) > from compute_expr_stats function in extended_stats.c . Thanks. It's a static function, so I agree that there's no need to keep an unused parameter. Pushed. David

Removing unused parameter in compute_expr_stats

2024-12-26 Thread Ilia Evdokimov
Hi hackers, I'm sharing a small patch that removes an unused parameter (totalrows) from compute_expr_stats function in extended_stats.c . This function originally appeared in commit a4d75c86bf15220df22de0a92c819ecef9db3849, which introduced extended statistics on expressions. From what I can