Re: [PATCH] Erase the distinctClause if the result is unique by definition - Mailing list pgsql-hackers
From | Ashutosh Bapat |
---|---|
Subject | Re: [PATCH] Erase the distinctClause if the result is unique by definition |
Date | |
Msg-id | CAExHW5t7ALZmaN8gL5DZV+en5G=4QTbKSYhBrXnSrKgCYNr_AA@mail.gmail.com Whole thread Raw |
In response to | Re: [PATCH] Erase the distinctClause if the result is unique by definition (Andy Fan <zhihui.fan1213@gmail.com>) |
Responses |
Re: [PATCH] Erase the distinctClause if the result is unique by definition
Re: [PATCH] Erase the distinctClause if the result is unique by definition |
List | pgsql-hackers |
On Sat, Feb 8, 2020 at 12:53 PM Andy Fan <zhihui.fan1213@gmail.com> wrote:
Hi Ashutosh:Thanks for your time.On Fri, Feb 7, 2020 at 11:54 PM Ashutosh Bapat <ashutosh.bapat.oss@gmail.com> wrote:Hi Andy,What might help is to add more description to your email message like giving examples to explain your idea.Anyway, I looked at the testcases you added for examples.+create table select_distinct_a(a int, b char(20), c char(20) not null, d int, e int, primary key(a, b));
+set enable_mergejoin to off;
+set enable_hashjoin to off;
+-- no node for distinct.
+explain (costs off) select distinct * from select_distinct_a;
+ QUERY PLAN
+-------------------------------
+ Seq Scan on select_distinct_a
+(1 row)From this example, it seems that the distinct operation can be dropped because (a, b) is a primary key. Is my understanding correct?Yes, you are correct. Actually I added then to commit message,but it's true that I should have copied them in this email body aswell. so copy it now.[PATCH] Erase the distinctClause if the result is unique by
definition
I forgot to mention this in the last round of comments. Your patch was actually removing distictClause from the Query structure. Please avoid doing that. If you remove it, you are also removing the evidence that this Query had a DISTINCT clause in it.
However the patch as presented has some problems1. What happens if the primary key constraint or NOT NULL constraint gets dropped between a prepare and execute? The plan will no more be valid and thus execution may produce non-distinct results.Will this still be an issue if user use doesn't use a "read uncommitted"isolation level? I suppose it should be ok for this case. But even thoughI should add an isolation level check for this. Just added that in the patchto continue discussing of this issue.
In PostgreSQL there's no "read uncommitted". But that doesn't matter since a query can be prepared outside a transaction and executed within one or more subsequent transactions.
PostgreSQL has similar concept of allowing non-grouping expression as part of targetlist when those expressions can be proved to be functionally dependent on the GROUP BY clause. See check_functional_grouping() and its caller. I think, DISTINCT elimination should work on similar lines.2. For the same reason described in check_functional_grouping(), using unique indexes for eliminating DISTINCT should be discouraged.I checked the comments of check_functional_grouping, the reason is* Currently we only check to see if the rel has a primary key that is a
* subset of the grouping_columns. We could also use plain unique constraints
* if all their columns are known not null, but there's a problem: we need
* to be able to represent the not-null-ness as part of the constraints added
* to *constraintDeps. FIXME whenever not-null constraints get represented
* in pg_constraint.Actually I am doubtful the reason for pg_constraint since we still be ableto get the not null information from relation->rd_attr->attrs[n].attnotnull whichis just what this patch did.
The problem isn't whether not-null-less can be inferred or not, the problem is whether that can be guaranteed across planning and execution of query (prepare and execute for example.) The constraintDep machinary registers the constraints used for preparing plan and invalidates the plan if any of those constraints change after plan is created.
3. If you could eliminate DISTINCT you could similarly eliminate GROUP BY as wellThis is a good point. The rules may have some different for join, so I preferto to focus on the current one so far.
I doubt that since DISTINCT is ultimately carried out as Grouping operation. But anyway, I won't hang upon that.
4. The patch works only at the query level, but that functionality can be expanded generally to other places which add Unique/HashAggregate/Group nodes if the underlying relation can be proved to produce distinct rows. But that's probably more work since we will have to label paths with unique keys similar to pathkeys.Do you mean adding some information into PlannerInfo, and when we createa node for Unique/HashAggregate/Group, we can just create a dummy node?
Not so much as PlannerInfo but something on lines of PathKey. See PathKey structure and related code. What I envision is PathKey class is also annotated with the information whether that PathKey implies uniqueness. E.g. a PathKey derived from a Primary index would imply uniqueness also. A PathKey derived from say Group operation also implies uniqueness. Then just by looking at the underlying Path we would be able to say whether we need Group/Unique node on top of it or not. I think that would make it much wider usecase and a very useful optimization.
--
Best Wishes,
Ashutosh Bapat
pgsql-hackers by date: