Mladen Gogala <no (AT) email (DOT) here.invalid> writes:
Quote:
The following query executes without a problem on 8.4 but fails with
syntax error on 8.3. Is there a "new features" document which would
tell me the differences? |
The manual has a release notes section (Appendix E) which generally
covers any changes, though how prominent a change is featured varies.
In this case, the WITH clause is mentioned in "E.2.3.3. Queries".
Window functions (the use of rank() and OVER in your query) are also
8.4 features (mentioned in E.2.1 and E.2.3.3), so you won't be able to
just replace the WITH clause with a sub-query under 8.3.x
-- David