| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add CREATE OR REPLACE FUNCTION syntax to allow replacing a function | Tom Lane | 2001-10-02 | 1 | -1/+2 |
| * | EXPLAIN ANALYZE feature to measure and show actual runtimes and tuple | Tom Lane | 2001-09-18 | 1 | -1/+2 |
| * | Transaction IDs wrap around, per my proposal of 13-Aug-01. More | Tom Lane | 2001-08-26 | 1 | -1/+2 |
| * | Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions in | Tom Lane | 2001-08-21 | 1 | -3/+1 |
| * | Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-type | Tom Lane | 2001-08-16 | 1 | -2/+1 |
| * | Make OIDs optional, per discussions in pghackers. WITH OIDS is still the | Tom Lane | 2001-08-10 | 1 | -2/+3 |
| * | Patch to LOCK multiple tables in one LOCK command. | Bruce Momjian | 2001-08-10 | 1 | -3/+3 |
| * | Back out LOCK A,B,C patch at Tom's suggestion. | Bruce Momjian | 2001-08-04 | 1 | -3/+3 |
| * | Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed. | Bruce Momjian | 2001-08-04 | 1 | -3/+3 |
| * | More EXTEND INDEX removal. | Bruce Momjian | 2001-07-16 | 1 | -16/+1 |
| * | Remove grammar restrictions on order of optional clauses in CREATE GROUP. | Tom Lane | 2001-07-12 | 1 | -4/+2 |
| * | Changes from Vince Vielhaber to allow the optional clauses of CREATE | Tom Lane | 2001-07-10 | 1 | -15/+4 |
| * | Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing boolean | Tom Lane | 2001-06-19 | 1 | -1/+43 |
| * | Allow GRANT/REVOKE to/from more than one user per invocation. Command tag | Peter Eisentraut | 2001-06-09 | 1 | -10/+27 |
| * | Further work on making use of new statistics in planner. Adjust APIs | Tom Lane | 2001-06-05 | 1 | -2/+3 |
| * | Modify optimizer data structures so that IndexOptInfo lists built for | Tom Lane | 2001-05-20 | 1 | -25/+22 |
| * | Rewrite of planner statistics-gathering code. ANALYZE is now available as | Tom Lane | 2001-05-07 | 1 | -5/+6 |
| * | Remove dashes in comments that don't need them, rewrap with pgindent. | Bruce Momjian | 2001-03-22 | 1 | -179/+124 |
| * | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 1 | -61/+66 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Change lcons(x, NIL) to makeList(x) where appropriate. | Bruce Momjian | 2001-01-17 | 1 | -5/+5 |
| * | Remove not-really-standard implementation of CREATE TABLE's UNDER clause, | Tom Lane | 2001-01-05 | 1 | -6/+6 |
| * | Planner speedup hacking. Avoid saving useless pathkeys, so that path | Tom Lane | 2000-12-14 | 1 | -1/+6 |
| * | Cache eval cost of qualification expressions in RestrictInfo nodes to | Tom Lane | 2000-12-12 | 1 | -1/+2 |
| * | Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant, | Peter Eisentraut | 2000-11-24 | 1 | -14/+1 |
| * | Extend CREATE DATABASE to allow selection of a template database to be | Tom Lane | 2000-11-14 | 1 | -1/+3 |
| * | Restructure handling of inheritance queries so that they work with outer | Tom Lane | 2000-11-12 | 1 | -3/+31 |
| * | New CHECKPOINT command. | Vadim B. Mikheev | 2000-11-05 | 1 | -1/+4 |
| * | Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases where | Tom Lane | 2000-11-05 | 1 | -2/+6 |
| * | Change the parser to convert SQL "position" and "substring" syntax to | Peter Eisentraut | 2000-10-31 | 1 | -1/+3 |
| * | Re-implement LIMIT/OFFSET as a plan node type, instead of a hack in | Tom Lane | 2000-10-26 | 1 | -1/+29 |
| * | The following patch was sent to the patches list: | Bruce Momjian | 2000-10-18 | 1 | -17/+3 |
| * | Arrange that no database accesses are attempted during parser() --- this | Tom Lane | 2000-10-07 | 1 | -9/+5 |
| * | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 1 | -23/+55 |
| * | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 1 | -19/+52 |
| * | Fix coredump in copyCommentStmt(). | Tom Lane | 2000-09-20 | 1 | -2/+3 |
| * | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 1 | -44/+70 |
| * | copyObject() and equal() now know about all parse-time node types, | Tom Lane | 2000-08-11 | 1 | -9/+1004 |
| * | Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' | Tom Lane | 2000-08-08 | 1 | -15/+29 |
| * | Remove 'Array' node type, which has evidently been dead code for | Tom Lane | 2000-07-22 | 1 | -24/+1 |
| * | Revise aggregate functions per earlier discussions in pghackers. | Tom Lane | 2000-07-17 | 1 | -2/+1 |
| * | First stage of reclaiming memory in executor by resetting short-term | Tom Lane | 2000-07-12 | 1 | -2/+2 |
| * | Add test code to copy all parse/plan trees. Repair essential omissions | Tom Lane | 2000-06-29 | 1 | -68/+82 |
| * | Reimplement nodeMaterial to use a temporary BufFile (or even memory, if the | Tom Lane | 2000-06-18 | 1 | -42/+3 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -27/+29 |
| * | Add copyObject logic for TruncateStmt and a few other utility-statement | Tom Lane | 2000-04-08 | 1 | -17/+148 |
| * | Fix extremely nasty little bug observed when a sub-SELECT appears in | Tom Lane | 2000-04-04 | 1 | -6/+31 |
| * | Repair logic flaw in cost estimator: cost_nestloop() was estimating CPU | Tom Lane | 2000-03-22 | 1 | -1/+2 |
| * | Implement column aliases on views "CREATE VIEW name (collist)". | Thomas G. Lockhart | 2000-03-14 | 1 | -1/+2 |
| * | Change parse-time representation of float literals (which include oversize | Tom Lane | 2000-02-21 | 1 | -6/+4 |