Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 |
| | |||
* | Remove no-longer-needed ExecCountSlots infrastructure. | Tom Lane | 2009-09-27 |
| | |||
* | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 |
| | | | | provided by Andrew. | ||
* | Update copyright for 2009. | Bruce Momjian | 2009-01-01 |
| | |||
* | Extend CTE patch to support recursive UNION (ie, without ALL). The | Tom Lane | 2008-10-07 |
| | | | | | | implementation uses an in-memory hash table, so it will poop out for very large recursive results ... but the performance characteristics of a sort-based implementation would be pretty unpleasant too. | ||
* | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane | 2008-10-04 |
There are some unimplemented aspects: recursive queries must use UNION ALL (should allow UNION too), and we don't have SEARCH or CYCLE clauses. These might or might not get done for 8.4, but even without them it's a pretty useful feature. There are also a couple of small loose ends and definitional quibbles, which I'll send a memo about to pgsql-hackers shortly. But let's land the patch now so we can get on with other development. Yoshiyuki Asaba, with lots of help from Tatsuo Ishii and Tom Lane |