| Commit message (Expand) | Author | Age | Files | Lines |
| * | Arrange for ORDER BY an expression on a UNION/INTERSECT/EXCEPT result, | Tom Lane | 2001-02-15 | 1 | -5/+34 |
| * | Repair problems with duplicate index names generated when CREATE TABLE | Tom Lane | 2001-02-14 | 1 | -73/+76 |
| * | Change scoping of table and join refnames to conform to SQL92: a JOIN | Tom Lane | 2001-02-14 | 1 | -57/+65 |
| * | Fix failure to create sequences for more than one SERIAL column in a | Tom Lane | 2001-01-27 | 1 | -2/+2 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Suppress unused-variable warning in non-Assert compilations. | Tom Lane | 2001-01-19 | 1 | -3/+2 |
| * | Remove compiler warning about uninitialized warnings. | Bruce Momjian | 2001-01-08 | 1 | -2/+2 |
| * | Remove not-really-standard implementation of CREATE TABLE's UNDER clause, | Tom Lane | 2001-01-05 | 1 | -3/+5 |
| * | Repair mishandling of PRIMARY KEY declaration that references an | Tom Lane | 2000-12-18 | 1 | -25/+54 |
| * | transformForUpdate() mustn't assume rowMarks list is initially empty. | Tom Lane | 2000-12-07 | 1 | -3/+5 |
| * | Clean up handling of FOR UPDATE inside views and subselects ... make it | Tom Lane | 2000-12-06 | 1 | -3/+1 |
| * | From Stephan Szabo: | Tom Lane | 2000-12-05 | 1 | -24/+37 |
| * | Repair breakage of rules containing INSERT ... SELECT actions, per bug | Tom Lane | 2000-12-05 | 1 | -10/+38 |
| * | Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant, | Peter Eisentraut | 2000-11-24 | 1 | -33/+1 |
| * | Treat plain 'BIT' as 'BIT(1)'. | Peter Eisentraut | 2000-11-18 | 1 | -1/+5 |
| * | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 | 1 | -21/+33 |
| * | Make DROP TABLE rollback-able: postpone physical file delete until commit. | Tom Lane | 2000-11-08 | 1 | -4/+26 |
| * | UNION select in a CREATE RULE caused a weird error, because transformRuleStmt | Tom Lane | 2000-11-05 | 1 | -6/+8 |
| * | Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases where | Tom Lane | 2000-11-05 | 1 | -72/+101 |
| * | This patch should allow primary/foreign key | Bruce Momjian | 2000-11-04 | 1 | -4/+64 |
| * | Arrange that no database accesses are attempted during parser() --- this | Tom Lane | 2000-10-07 | 1 | -40/+51 |
| * | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 1 | -219/+478 |
| * | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 1 | -72/+107 |
| * | the patch include: | Bruce Momjian | 2000-09-25 | 1 | -2/+2 |
| * | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 1 | -71/+171 |
| * | This is mostly the same as an earlier patch I | Bruce Momjian | 2000-08-29 | 1 | -2/+149 |
| * | Make makeObjectName multibyte aware. Currently, it may produce | Tatsuo Ishii | 2000-08-22 | 1 | -1/+12 |
| * | copyObject() and equal() now know about all parse-time node types, | Tom Lane | 2000-08-11 | 1 | -37/+49 |
| * | Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' | Tom Lane | 2000-08-08 | 1 | -2/+2 |
| * | More functions updated to new fmgr style --- money, name, tid datatypes. | Tom Lane | 2000-08-03 | 1 | -2/+3 |
| * | Remove useless and dangerous 'opt_type' option from CREATE INDEX. | Tom Lane | 2000-07-15 | 1 | -2/+1 |
| * | Implement nested block comments in the backend and in psql. | Thomas G. Lockhart | 2000-07-14 | 1 | -1/+33 |
| * | Remove memory leak from VACUUM parsing. | Tom Lane | 2000-07-02 | 1 | -19/+1 |
| * | Fix performance problems with pg_index lookups (see, for example, | Tom Lane | 2000-06-17 | 1 | -34/+27 |
| * | Rename rule CURRENT to OLD in source tree. Add mapping for backward | Bruce Momjian | 2000-06-12 | 1 | -4/+4 |
| * | Inheritance overhaul by Chris Bitmead <chris@bitmead.com> | Bruce Momjian | 2000-06-09 | 1 | -4/+4 |
| * | Remove unused include files. Do not touch /port or includes used by defines. | Bruce Momjian | 2000-05-30 | 1 | -2/+1 |
| * | Generated header files parse.h and fmgroids.h are now copied into | Tom Lane | 2000-05-29 | 1 | -2/+2 |
| * | First round of changes for new fmgr interface. fmgr itself and the | Tom Lane | 2000-05-28 | 1 | -1/+2 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -335/+364 |
| * | transformCreateStmt should put Ident nodes, not ColumnDef nodes, into | Tom Lane | 2000-03-24 | 1 | -18/+22 |
| * | Implement column aliases on views "CREATE VIEW name (collist)". | Thomas G. Lockhart | 2000-03-14 | 1 | -3/+31 |
| * | Simplify parsing of column constraints by treating constraint attributes | Tom Lane | 2000-03-01 | 1 | -16/+131 |
| * | Changed execution time of ON <event> RESTRICT referential | Jan Wieck | 2000-02-29 | 1 | -27/+31 |
| * | Carry column aliases from the parser frontend. Enables queries like | Thomas G. Lockhart | 2000-02-15 | 1 | -21/+28 |
| * | Enabling automatic primary key detection for self-referencing | Jan Wieck | 2000-02-05 | 1 | -3/+28 |
| * | Added ALTER TABLE ... ADD CONSTRAINT (provided by Stephan Szabo). | Jan Wieck | 2000-02-04 | 1 | -8/+252 |
| * | Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now | Tom Lane | 2000-01-27 | 1 | -17/+17 |
| * | Add: | Bruce Momjian | 2000-01-26 | 1 | -2/+3 |
| * | Forgot to handle column length defaults in ALTER TABLE ADD COLUMN. | Tom Lane | 2000-01-22 | 1 | -1/+13 |