assertion failure in WITHIN GROUP patch - Mailing list pgsql-bugs

From Jeff Davis
Subject assertion failure in WITHIN GROUP patch
Date
Msg-id 1387911540.19125.430.camel@jdavis
Whole thread Raw
Responses Re: assertion failure in WITHIN GROUP patch  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
create table big(a int);
insert into big select generate_series(10000000,1,-1);
vacuum big;
vacuum big;
select percentile_cont(0.5) within group (order by a) from big;


TRAP: FailedAssertion("!(pointer != ((void*)0))", File: "mcxt.c", Line:
699)
LOG:  server process (PID 18750) was terminated by signal 6: Aborted
DETAIL:  Failed process was running: select percentile_cont(0.5) within
group (order by a) from big;

Regards,
    Jeff Davis

pgsql-bugs by date:

Previous
From: Andres Freund
Date:
Subject: Re: BUG #8697: checkpoint cann't flush unlogged table's dirty page to disk.
Next
From: Tom Lane
Date:
Subject: Re: assertion failure in WITHIN GROUP patch