From: | Richard Guo <guofenglinux(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk>, Michael Paquier <michael(at)paquier(dot)xyz>, cyg0810(at)gmail(dot)com, PostgreSQL mailing lists <pgsql-bugs(at)lists(dot)postgresql(dot)org> |
Subject: | Re: BUG #17088: FailedAssertion in prepagg.c |
Date: | 2021-07-09 06:54:02 |
Message-ID: | CAMbWs4_zpvPa1+qGBU78FhQqiQo_RNDK2vwP3uBxs-S-mABxJQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Thu, Jul 8, 2021 at 2:14 PM Richard Guo <guofenglinux(at)gmail(dot)com> wrote:
>
> On Thu, Jul 8, 2021 at 1:44 PM Richard Guo <guofenglinux(at)gmail(dot)com> wrote:
>
>>
>> I think the culprit is that when replacing correlation uplevel vars with
>> Params, we do not handle the SubLinks in the arguments of uplevel
>> GroupingFunc. We expect build_subplan should take care of it. But in
>> build_subplan, we ignore GroupingFunc incorrectly.
>>
>> diff --git a/src/backend/optimizer/plan/subselect.c
>> b/src/backend/optimizer/plan/subselect.c
>> index 0881a208ac..e4918f275e 100644
>> --- a/src/backend/optimizer/plan/subselect.c
>> +++ b/src/backend/optimizer/plan/subselect.c
>> @@ -364,7 +364,8 @@ build_subplan(PlannerInfo *root, Plan *plan,
>> PlannerInfo *subroot,
>> * SS_replace_correlation_vars). Do that now.
>> */
>> if (IsA(arg, PlaceHolderVar) ||
>> - IsA(arg, Aggref))
>> + IsA(arg, Aggref) ||
>> + IsA(arg, GroupingFunc))
>> arg = SS_process_sublinks(root, arg, false);
>>
>>
>
> I think we also need to change SS_process_sublinks to avoid recursing
> into the arguments of an outer GroupingFunc. And that leads to a fix as
> attached.
>
Update the patch with comments and test cases.
Thanks
Richard
Attachment | Content-Type | Size |
---|---|---|
v1-0001-Fix-handling-of-outer-GroupingFunc-within-subqueries.patch | application/octet-stream | 4.9 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Guo | 2021-07-09 07:17:41 | Re: BUG #17094: FailedAssertion at planner.c |
Previous Message | PG Bug reporting form | 2021-07-09 05:34:50 | BUG #17096: Cannot reinstall after uninstalling PostgreSQL on Windows 10 Pro for Workstations |