Re: Windowing Function Patch Review -> Standard Conformance - Mailing list pgsql-hackers

From Hitoshi Harada
Subject Re: Windowing Function Patch Review -> Standard Conformance
Date
Msg-id e08cc0400812272322m20ed4868q3902d87fd747ec40@mail.gmail.com
Whole thread Raw
In response to Re: Windowing Function Patch Review -> Standard Conformance  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Windowing Function Patch Review -> Standard Conformance  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
2008/12/28 Tom Lane <tgl@sss.pgh.pa.us>:
> I've spent quite a bit of time reviewing the window functions patch,
> and I think it is now ready to commit, other than the documentation
> (which I've not looked at yet at all).  Attached is my current patch
> against HEAD, sans documentation.  This incorporates the recently
> discussed aggregate-function API changes and support for tuplestore
> trimming.  There's a number of things that could be improved yet:
>        * we really ought to have some support for non-built-in
>          window functions
>        * I think the planner could be a bit smarter about when to
>          sort or not
>        * tuplestore_advance and related code really needs to be made
>          more efficient; it didn't matter much before but it does now
> but I think these things can be worked on after the core patch is
> committed.
>

I ran the patch witouht any errors. Though it's trivial, I noticed
window_gettupleslot has to be fixed a bit.

diff src/backend/executor/nodeWindowAgg.c.orig
src/backend/executor/nodeWindowAgg.c
1445a1446,1449
>       /* pos = -1 means special on spool_tuples(), so check it before */
>       if (pos < 0)
>               return false;
>
1449c1453
<       if (pos >= winstate->spooled_rows || pos < 0)
---
>       if (pos >= winstate->spooled_rows)


Regards,


-- 
Hitoshi Harada


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Windowing Function Patch Review -> Standard Conformance
Next
From: "Robert Haas"
Date:
Subject: Re: Proposed Patch to Improve Performance of Multi-BatchHash Join for Skewed Data Sets