| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make OIDs optional, per discussions in pghackers. WITH OIDS is still the | Tom Lane | 2001-08-10 | 1 | -2/+1 |
| * | Back out BYTEA binary compatibility changes. | Bruce Momjian | 2001-06-24 | 1 | -8/+1 |
| * | > Marko Kreen <marko@l-t.ee> writes: | Bruce Momjian | 2001-06-23 | 1 | -1/+8 |
| * | Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing boolean | Tom Lane | 2001-06-19 | 1 | -1/+3 |
| * | Make bit and bit varying types reject too long input. (They already tried | Peter Eisentraut | 2001-05-22 | 1 | -4/+4 |
| * | New comment. This func/column things has always confused me. | Bruce Momjian | 2001-05-19 | 1 | -2/+2 |
| * | Rename ParseFuncOrColumn() to ParseColumnOrFunc(). | Bruce Momjian | 2001-05-18 | 1 | -2/+2 |
| * | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 6 | -37/+38 |
| * | Clean up two rather nasty bugs in operator selection code. | Tom Lane | 2001-02-16 | 1 | -5/+19 |
| * | Change scoping of table and join refnames to conform to SQL92: a JOIN | Tom Lane | 2001-02-14 | 3 | -14/+26 |
| * | plpgsql's private copy of xlateSqlType was out of sync. Again. This | Tom Lane | 2001-02-09 | 1 | -1/+3 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 16 | -32/+32 |
| * | Remove not-really-standard implementation of CREATE TABLE's UNDER clause, | Tom Lane | 2001-01-05 | 1 | -1/+2 |
| * | Clean up handling of FOR UPDATE inside views and subselects ... make it | Tom Lane | 2000-12-06 | 1 | -1/+3 |
| * | Add separate type category for bit string types, allowing mixed bit/varbit | Peter Eisentraut | 2000-11-17 | 1 | -1/+2 |
| * | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 | 2 | -7/+13 |
| * | Make DROP TABLE rollback-able: postpone physical file delete until commit. | Tom Lane | 2000-11-08 | 2 | -2/+4 |
| * | Arrange that no database accesses are attempted during parser() --- this | Tom Lane | 2000-10-07 | 2 | -3/+4 |
| * | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 2 | -5/+7 |
| * | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 3 | -7/+12 |
| * | Use variable aliases, if supplied, rather than real column names in | Tom Lane | 2000-09-25 | 1 | -9/+11 |
| * | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 6 | -69/+58 |
| * | Update obsolete comments. | Tom Lane | 2000-08-29 | 1 | -4/+2 |
| * | First pass at integrating BIT and BIT VARYING code from Adriaan Joubert. | Tom Lane | 2000-08-21 | 1 | -3/+8 |
| * | Make functional indexes accept binary-compatible functions, for example | Tom Lane | 2000-08-20 | 1 | -1/+5 |
| * | 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 | -2/+1 |
| * | Rename rule CURRENT to OLD in source tree. Add mapping for backward | Bruce Momjian | 2000-06-12 | 1 | -2/+2 |
| * | Inheritance overhaul by Chris Bitmead <chris@bitmead.com> | Bruce Momjian | 2000-06-09 | 1 | -2/+2 |
| * | Mark functions as static and ifdef NOT_USED as appropriate. | Bruce Momjian | 2000-06-08 | 2 | -8/+2 |
| * | New warning code about auto-created range table entries. | Bruce Momjian | 2000-06-03 | 1 | -1/+2 |
| * | Repair list-vs-node confusion that resulted in failure for INNER JOIN ON. | Tom Lane | 2000-05-12 | 1 | -5/+6 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 8 | -39/+39 |
| * | Reverse out BYTEA type coersion. | Bruce Momjian | 2000-03-20 | 1 | -8/+1 |
| * | Add compatiblity information for bytea. | Bruce Momjian | 2000-03-20 | 1 | -1/+8 |
| * | Add safety check on expression nesting depth. Default value is set by | Tom Lane | 2000-03-17 | 1 | -1/+4 |
| * | Turns out that Mazurkiewicz's gripe about 'function inheritance' is | Tom Lane | 2000-03-16 | 2 | -2/+6 |
| * | Implement column aliases on views "CREATE VIEW name (collist)". | Thomas G. Lockhart | 2000-03-14 | 1 | -1/+4 |
| * | Fix exprTypmod to recognize length-coercion function expressions, | Tom Lane | 2000-02-26 | 1 | -1/+2 |
| * | Implement "date/time grand unification". | Thomas G. Lockhart | 2000-02-16 | 1 | -14/+11 |
| * | Carry column aliases from the parser frontend. Enables queries like | Thomas G. Lockhart | 2000-02-15 | 4 | -18/+27 |
| * | Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now | Tom Lane | 2000-01-27 | 1 | -2/+4 |
| * | Add: | Bruce Momjian | 2000-01-26 | 16 | -32/+48 |
| * | Clean up longstanding gcc warnings by adding missing extern | Tom Lane | 2000-01-20 | 1 | -1/+3 |
| * | Pass atttypmod to CoerceTargetExpr, so that it can pass it on to | Tom Lane | 2000-01-17 | 1 | -2/+2 |
| * | Create a new parsetree node type, TypeCast, so that transformation of | Tom Lane | 2000-01-17 | 1 | -3/+5 |
| * | Make number of args to a function configurable. | Bruce Momjian | 2000-01-10 | 1 | -4/+1 |
| * | any_ordering_op()'s argument should be declared Oid not int. | Tom Lane | 1999-12-12 | 1 | -2/+2 |
| * | Teach grammar and parser about aggregate(DISTINCT ...). No implementation | Tom Lane | 1999-12-10 | 2 | -5/+8 |
| * | Eliminate local inefficiencies in updateTargetListEntry, make_var, and | Tom Lane | 1999-11-01 | 1 | -3/+5 |