Re: BUG #5841: rank()+1 fails, 1+rank() succeeds - Mailing list pgsql-bugs

From jeff@biccard.com
Subject Re: BUG #5841: rank()+1 fails, 1+rank() succeeds
Date
Msg-id 20110118221907.u4f00r2ss4kwc8kw@webmail.biccard.com
Whole thread Raw
In response to Re: BUG #5841: rank()+1 fails, 1+rank() succeeds  (Alvaro Herrera <alvherre@commandprompt.com>)
Responses Re: BUG #5841: rank()+1 fails, 1+rank() succeeds  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-bugs
Thanks for clarifying. I've submitted a note on the interactive
version of the docs, and attached a small patch to make explicit that
a window function is followed _immediately_ by an OVER clause, as the
syntax[1] indicates.

Regards,
Jeff


[1]
http://www.postgresql.org/docs/current/static/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS

Quoting Alvaro Herrera <alvherre@commandprompt.com>:

> Excerpts from Jeff Turner's message of lun ene 17 07:34:29 -0300 2011:
>
>> test=# select *, rank()+1 over (partition by bar) from t;
>> ERROR:  syntax error at or near "over"
>> LINE 1: select *, rank()+1 over (partition by bar) from t;
>
> The "over" stuff is part of the expression; you can't add the +1 in the
> middle.  This works:
>
> select *, rank() over (partition by bar) + 1 from t;
>
> --
> Álvaro Herrera <alvherre@commandprompt.com>
> The PostgreSQL Company - Command Prompt, Inc.
> PostgreSQL Replication, Consulting, Custom Development, 24x7 support
>



Attachment

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: Problems with adding a is not null to a query.
Next
From: benoygopal
Date:
Subject: Re: BUG #5791: Tables are not viewing through pgadmin