Re: server crashed with TRAP: FailedAssertion("!(!parallel_aware || pathnode->path.parallel_safe)"

From: Amit Khandekar <amitdkhan(dot)pg(at)gmail(dot)com>
To: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Robert Haas <robertmhaas(at)gmail(dot)com>, Rajkumar Raghuwanshi <rajkumar(dot)raghuwanshi(at)enterprisedb(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, amul sul <sulamul(at)gmail(dot)com>
Subject: Re: server crashed with TRAP: FailedAssertion("!(!parallel_aware || pathnode->path.parallel_safe)"
Date: 2018-06-20 08:58:56
Message-ID: CAJ3gD9evspU-qyo-Cj-skwVXbGZ31iRLWiGNvMLsziub3TsrAg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 20 June 2018 at 14:24, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> wrote:
> On Mon, Jun 18, 2018 at 3:11 PM, Amit Khandekar <amitdkhan(dot)pg(at)gmail(dot)com> wrote:
>> On 16 June 2018 at 10:44, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> wrote:
>>> On Thu, Jun 14, 2018 at 10:05 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>>>>
>>>> It looks to me like traversal of the partial subpaths is the right
>>>> thing here, in which case we should do
>>>>
>>>> - foreach(l, subpaths)
>>>> + foreach(l, pathnode->subpaths)
>>>>
>>>> or perhaps better
>>>>
>>>> - pathnode->subpaths = list_concat(subpaths, partial_subpaths);
>>>> + pathnode->subpaths = subpaths = list_concat(subpaths, partial_subpaths);
>>>>
>>>> to make the behavior clear and consistent.
>>>>
>>>
>>> I agree with your analysis and proposed change. However, I think in
>>> practice, it might not lead to any bug as in the loop, we are
>>> computing parallel_safety and partial_subpaths should be
>>> parallel_safe.
>>
>> Will have a look at this soon.
>>
>
> Did you get a chance to look at it?

Not yet, but I have planned to do this by tomorrow.

> I have committed the patch which
> fixes the problem reported in this thread, so I am inclined to close
> the corresponding entry in Open Items list, but I am afraid that we
> will lose track of this suggestion if I close it.

Yes I agree.

--
Thanks,
-Amit Khandekar
EnterpriseDB Corporation
The Postgres Database Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Alexander Korotkov 2018-06-20 09:00:31 Re: [HACKERS] GUC for cleanup indexes threshold.
Previous Message Amit Kapila 2018-06-20 08:54:05 Re: server crashed with TRAP: FailedAssertion("!(!parallel_aware || pathnode->path.parallel_safe)"