| Commit message (Expand) | Author | Age | Files | Lines |
| * | Preliminary code review for domain CHECK constraints patch: add documentation, | Tom Lane | 2002-12-12 | 1 | -2/+2 |
| * | Phase 2 of read-only-plans project: restructure expression-tree nodes | Tom Lane | 2002-12-12 | 1 | -10/+11 |
| * | Add DOMAIN check constraints. | Bruce Momjian | 2002-11-15 | 1 | -2/+2 |
| * | Make the world at least somewhat safe for zero-column tables, and | Tom Lane | 2002-09-28 | 1 | -2/+4 |
| * | Extend pg_cast castimplicit column to a three-way value; this allows us | Tom Lane | 2002-09-18 | 1 | -62/+14 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -20/+21 |
| * | Remove Ident nodetype in favor of using String nodes; this fixes some | Tom Lane | 2002-08-19 | 1 | -4/+1 |
| * | Cause schema-qualified FROM items and schema-qualified variable references | Tom Lane | 2002-08-08 | 1 | -4/+4 |
| * | ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne, | Tom Lane | 2002-08-02 | 1 | -3/+7 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Restructure representation of aggregate functions so that they have pg_proc | Tom Lane | 2002-04-11 | 1 | -7/+11 |
| * | Functions live in namespaces. Qualified function names work, eg | Tom Lane | 2002-04-09 | 1 | -34/+13 |
| * | Add INSERT(..., DEFAULT, ). | Bruce Momjian | 2002-04-05 | 1 | -2/+12 |
| * | Removed obsolete DROP_COLUMN_HACK stuff. | Hiroshi Inoue | 2002-04-02 | 1 | -5/+1 |
| * | pg_type has a typnamespace column; system now supports creating types | Tom Lane | 2002-03-29 | 1 | -5/+19 |
| * | A little further progress on schemas: push down RangeVars into | Tom Lane | 2002-03-22 | 1 | -2/+2 |
| * | First phase of SCHEMA changes, concentrating on fixing the grammar and | Tom Lane | 2002-03-21 | 1 | -28/+76 |
| * | Restructure representation of join alias variables. An explicit JOIN | Tom Lane | 2002-03-12 | 1 | -42/+24 |
| * | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | 2001-11-05 | 1 | -2/+2 |
| * | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | 2001-10-25 | 1 | -14/+7 |
| * | Another go-round with FigureColname, to produce less surprising results | Tom Lane | 2001-10-08 | 1 | -22/+45 |
| * | Measure the current transaction time to milliseconds. | Thomas G. Lockhart | 2001-09-28 | 1 | -2/+15 |
| * | Simplify and clean up FigureColname; make it work without coredumping | Tom Lane | 2001-09-17 | 1 | -26/+16 |
| * | Bug #1: attribute name when column is type cast: | Bruce Momjian | 2001-09-10 | 1 | -2/+5 |
| * | Use format_type sibling in backend error messages, so the user sees | Peter Eisentraut | 2001-08-09 | 1 | -4/+5 |
| * | Back out BYTEA binary compatibility changes. | Bruce Momjian | 2001-06-24 | 1 | -5/+3 |
| * | > Marko Kreen <marko@l-t.ee> writes: | Bruce Momjian | 2001-06-23 | 1 | -3/+5 |
| * | Print error on SELECT tab FROM tab: | Bruce Momjian | 2001-05-21 | 1 | -1/+4 |
| * | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 1 | -3/+5 |
| * | Change scoping of table and join refnames to conform to SQL92: a JOIN | Tom Lane | 2001-02-14 | 1 | -22/+31 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 1 | -4/+4 |
| * | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 1 | -76/+66 |
| * | Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' | Tom Lane | 2000-08-08 | 1 | -3/+1 |
| * | Clean up #include's. | Bruce Momjian | 2000-06-15 | 1 | -1/+2 |
| * | Remove unused include files. Do not touch /port or includes used by defines. | Bruce Momjian | 2000-05-30 | 1 | -4/+1 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -40/+53 |
| * | Implement column aliases on views "CREATE VIEW name (collist)". | Thomas G. Lockhart | 2000-03-14 | 1 | -2/+2 |
| * | Trial implementation of ALTER DROP COLUMN. | Hiroshi Inoue | 2000-03-09 | 1 | -1/+7 |
| * | Carry column aliases from the parser frontend. Enables queries like | Thomas G. Lockhart | 2000-02-15 | 1 | -12/+43 |
| * | Add: | Bruce Momjian | 2000-01-26 | 1 | -2/+3 |
| * | Pass atttypmod to CoerceTargetExpr, so that it can pass it on to | Tom Lane | 2000-01-17 | 1 | -6/+7 |
| * | Create a new parsetree node type, TypeCast, so that transformation of | Tom Lane | 2000-01-17 | 1 | -61/+2 |
| * | Make number of args to a function configurable. | Bruce Momjian | 2000-01-10 | 1 | -3/+3 |
| * | Teach grammar and parser about aggregate(DISTINCT ...). No implementation | Tom Lane | 1999-12-10 | 1 | -7/+7 |
| * | Add system indexes to match all caches. | Bruce Momjian | 1999-11-22 | 1 | -2/+2 |
| * | New NameStr macro to convert Name to Str. No need for var.data anymore. | Bruce Momjian | 1999-11-07 | 1 | -3/+3 |
| * | Eliminate local inefficiencies in updateTargetListEntry, make_var, and | Tom Lane | 1999-11-01 | 1 | -17/+18 |
| * | Rewrite parser's handling of INSERT ... SELECT so that processing | Tom Lane | 1999-07-19 | 1 | -630/+244 |
| * | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 1 | -4/+1 |