Optimization of unnecessary GROUP BY columns - Mailing list pgsql-general

From Kevin Murphy
Subject Optimization of unnecessary GROUP BY columns
Date
Msg-id 459156F4.7050207@genome.chop.edu
Whole thread Raw
Responses Re: Optimization of unnecessary GROUP BY columns  (Martijn van Oosterhout <kleptog@svana.org>)
List pgsql-general
When columns are required in a GROUP BY clause even though some of them
are fully dependent on others, is there any plan for making it possible
to do the GROUP BY only on the necessary columns?  The 8.X documentation
made me curious:

Section 7.2.3 in the 8.X documentation ("The GROUP BY and HAVING Clauses"):

"SELECT product_id, p.name, (sum(s.units) * p.price) AS sales
FROM products p LEFT JOIN sales s USING (product_id)
GROUP BY product_id, p.name, p.price;
...
Depending on how exactly the products table is set up, name and price
may be fully dependent on the product ID, so the additional groupings
could theoretically be unnecessary, but this is not implemented yet."

-Kevin Murphy


pgsql-general by date:

Previous
From: Marc Evans
Date:
Subject: Re: Clustering & Load Balancing & Replication
Next
From: Martijn van Oosterhout
Date:
Subject: Re: Optimization of unnecessary GROUP BY columns