| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove all traces that suggest that a non-Bison yacc might be supported, and | Peter Eisentraut | 2008-08-29 | 1 | -3/+3 |
| * | Support "variadic" functions, which can accept a variable number of arguments | Tom Lane | 2008-07-16 | 1 | -1/+2 |
| * | Add a function pg_get_keywords() to let clients find out the set of keywords | Tom Lane | 2008-07-03 | 1 | -2/+5 |
| * | Link in keywords file instead of copying it. | Michael Meskes | 2008-05-21 | 1 | -2/+5 |
| * | Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing a | Tom Lane | 2008-05-16 | 1 | -1/+3 |
| * | Reduce the need for frontend programs to include "postgres.h" by refactoring | Tom Lane | 2008-03-27 | 1 | -5/+14 |
| * | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 1 | -2/+2 |
| * | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 1 | -3/+4 |
| * | Remove "convert 'blah' using conversion_name" facility, because if it | Andrew Dunstan | 2007-09-24 | 1 | -2/+1 |
| * | Avoid using TEXT as a Bison symbol, since this provokes warnings on | Tom Lane | 2007-08-21 | 1 | -2/+2 |
| * | Tsearch2 functionality migrates to core. The bulk of this work is by | Tom Lane | 2007-08-21 | 1 | -1/+7 |
| * | Arrange for quote_identifier() and pg_dump to not quote keywords that are | Tom Lane | 2007-06-18 | 1 | -372/+380 |
| * | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | 1 | -1/+2 |
| * | Rename the newly-added commands for discarding session state. | Neil Conway | 2007-04-26 | 1 | -1/+3 |
| * | Support enum data types. Along the way, use macros for the values of | Tom Lane | 2007-04-02 | 1 | -1/+2 |
| * | Changes pg_trigger and extend pg_rewrite in order to allow triggers and | Jan Wieck | 2007-03-19 | 1 | -1/+3 |
| * | Various fixes in the logic of XML functions: | Peter Eisentraut | 2007-01-25 | 1 | -1/+2 |
| * | Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATOR | Tom Lane | 2007-01-23 | 1 | -1/+2 |
| * | Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_proc | Tom Lane | 2007-01-22 | 1 | -1/+2 |
| * | Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LAST | Tom Lane | 2007-01-09 | 1 | -1/+2 |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 1 | -2/+2 |
| * | Code review for XML patch. Instill a bit of sanity in the location of | Tom Lane | 2006-12-24 | 1 | -10/+10 |
| * | Initial SQL/XML support: xml data type and initial set of functions. | Peter Eisentraut | 2006-12-21 | 1 | -1/+18 |
| * | Added missing entry (CASCADED) in keywords table. | Peter Eisentraut | 2006-10-07 | 1 | -1/+2 |
| * | Add the ability to create indexes 'concurrently', that is, without | Tom Lane | 2006-08-25 | 1 | -1/+2 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 1 | -1/+2 |
| * | Change the bootstrap sequence so that toast tables for system catalogs are | Tom Lane | 2006-07-31 | 1 | -2/+1 |
| * | Fix some missing inclusions identified with new pgcheckdefines tool. | Tom Lane | 2006-07-15 | 1 | -1/+2 |
| * | Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE. | Bruce Momjian | 2006-06-27 | 1 | -1/+2 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 1 | -2/+2 |
| * | Protect ADD and HEADER symbols from conflicting with MIPS includes. | Bruce Momjian | 2005-12-27 | 1 | -3/+3 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 1 | -2/+2 |
| * | Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate the | Alvaro Herrera | 2005-11-21 | 1 | -1/+3 |
| * | DROP objecttype IF EXISTS for the following objects: | Andrew Dunstan | 2005-11-19 | 1 | -1/+2 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 1 | -3/+3 |
| * | Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump to | Tom Lane | 2005-08-23 | 1 | -1/+3 |
| * | Add per-user and per-database connection limit options. | Tom Lane | 2005-07-31 | 1 | -1/+2 |
| * | Add a role property 'rolinherit' which, when false, denotes that the role | Tom Lane | 2005-07-26 | 1 | -1/+3 |
| * | More cleanup on roles patch. Allow admin option to be inherited through | Tom Lane | 2005-06-29 | 1 | -1/+3 |
| * | Bring syntax of role-related commands into SQL compliance. To avoid | Tom Lane | 2005-06-28 | 1 | -2/+8 |
| * | Replace pg_shadow and pg_group by new role-capable catalogs pg_authid | Tom Lane | 2005-06-28 | 1 | -1/+2 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 1 | -1/+3 |
| * | Make REINDEX DATABASE do what one would expect, namely reindex all indexes | Tom Lane | 2005-06-22 | 1 | -1/+2 |
| * | Two-phase commit. Original patch by Heikki Linnakangas, with additional | Tom Lane | 2005-06-17 | 1 | -1/+2 |
| * | Add BETWEEN SYMMETRIC. | Bruce Momjian | 2005-06-14 | 1 | -1/+3 |
| * | Add COPY WITH CVS HEADER to allow a heading line as the first line in | Bruce Momjian | 2005-05-07 | 1 | -1/+2 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Replace nested-BEGIN syntax for subtransactions with spec-compliant | Tom Lane | 2004-07-27 | 1 | -1/+3 |
| * | Remove TABLESPACE option of CREATE SEQUENCE; sequences will now always | Tom Lane | 2004-07-12 | 1 | -4/+1 |