| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform to | Tom Lane | 2006-09-28 | 1 | -79/+21 |
| * | Fix notice message from DROP FUNCTION IF EXISTS, and improve message | Tom Lane | 2006-09-25 | 1 | -14/+49 |
| * | Fix bugs in plpgsql and ecpg caused by assuming that isspace() would only | Tom Lane | 2006-09-22 | 2 | -2/+28 |
| * | Fix problems with column name list of CREATE TABLE AS being applied to | Tom Lane | 2006-09-18 | 1 | -43/+66 |
| * | Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing; | Tom Lane | 2006-09-18 | 1 | -11/+18 |
| * | Code review for UPDATE SET (columnlist) patch. Make it handle as much | Tom Lane | 2006-09-03 | 1 | -104/+96 |
| * | Revert FETCH/MOVE int64 patch. Was using incorrect checks for | Bruce Momjian | 2006-09-03 | 2 | -59/+2 |
| * | Remove unnecessary copyObject() call in update (values) code. | Bruce Momjian | 2006-09-03 | 1 | -2/+2 |
| * | Small code cleanup for recent UPDATE SET (values) patch. | Bruce Momjian | 2006-09-02 | 1 | -18/+9 |
| * | Add UPDATE tab SET ROW (col, ...) = (val, ...) for updating | Bruce Momjian | 2006-09-02 | 1 | -4/+74 |
| * | Change FETCH/MOVE to use int8. | Bruce Momjian | 2006-09-02 | 2 | -2/+59 |
| * | Extend COPY to support COPY (SELECT ...) TO ... | Tom Lane | 2006-08-30 | 2 | -4/+34 |
| * | Add the ability to create indexes 'concurrently', that is, without | Tom Lane | 2006-08-25 | 3 | -10/+32 |
| * | Fix all known problems with pg_dump's handling of serial sequences | Tom Lane | 2006-08-21 | 2 | -22/+37 |
| * | Cause '*' and 'foo.*' notations to mark the referenced RTE(s) as | Tom Lane | 2006-08-14 | 2 | -4/+11 |
| * | Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this was | Tom Lane | 2006-08-12 | 3 | -5/+14 |
| * | Remove ancient, obsolete comment. | Tom Lane | 2006-08-12 | 1 | -2/+1 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 3 | -13/+99 |
| * | Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged have | Tom Lane | 2006-08-10 | 1 | -23/+51 |
| * | Wups, got the test for contain_vars_of_level-not-needed wrong in | Tom Lane | 2006-08-02 | 1 | -2/+2 |
| * | Add a HINT per suggestion from Michael Glaesemann. Also, tweak OLD/NEW | Tom Lane | 2006-08-02 | 1 | -5/+9 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 7 | -196/+734 |
| * | Change the bootstrap sequence so that toast tables for system catalogs are | Tom Lane | 2006-07-31 | 2 | -12/+3 |
| * | Aggregate functions now support multiple input arguments. I also took | Tom Lane | 2006-07-27 | 3 | -68/+56 |
| * | Code review for bigint-LIMIT patch. Fix missed planner dependency, | Tom Lane | 2006-07-26 | 2 | -25/+32 |
| * | Change LIMIT/OFFSET to use int8 | Bruce Momjian | 2006-07-26 | 2 | -4/+42 |
| * | Fix some missing inclusions identified with new pgcheckdefines tool. | Tom Lane | 2006-07-15 | 2 | -3/+4 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 11 | -30/+11 |
| * | Allow include files to compile own their own. | Bruce Momjian | 2006-07-13 | 6 | -6/+12 |
| * | Sort reference of include files, "A" - "F". | Bruce Momjian | 2006-07-11 | 1 | -3/+3 |
| * | Code review for FILLFACTOR patch. Change WITH grammar as per earlier | Tom Lane | 2006-07-03 | 3 | -295/+29 |
| * | Add FILLFACTOR to CREATE INDEX. | Bruce Momjian | 2006-07-02 | 3 | -41/+328 |
| * | ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT) | Bruce Momjian | 2006-07-02 | 1 | -1/+17 |
| * | Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE. | Bruce Momjian | 2006-06-27 | 3 | -16/+83 |
| * | Change the row constructor syntax (ROW(...)) so that list elements foo.* | Tom Lane | 2006-06-26 | 2 | -23/+89 |
| * | Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT). | Tom Lane | 2006-06-21 | 1 | -4/+11 |
| * | Fix a couple of obvious problems in DROP IF EXISTS patch. | Tom Lane | 2006-06-16 | 1 | -6/+5 |
| * | DROP ... IF EXISTS for the following cases: | Andrew Dunstan | 2006-06-16 | 1 | -6/+93 |
| * | Fix problems with cached tuple descriptors disappearing while still in use | Tom Lane | 2006-06-16 | 2 | -4/+8 |
| * | Re-introduce the yylex filter function formerly used to support UNION | Tom Lane | 2006-05-27 | 3 | -8/+127 |
| * | Add a new GUC parameter backslash_quote, which determines whether the SQL | Tom Lane | 2006-05-21 | 1 | -1/+13 |
| * | Code review for standard_conforming_strings patch. Fix it so it does not | Tom Lane | 2006-05-11 | 1 | -11/+6 |
| * | Provide a namespace.c function for lookup of an operator with exact | Tom Lane | 2006-05-01 | 1 | -98/+90 |
| * | Improve the representation of FOR UPDATE/FOR SHARE so that we can | Tom Lane | 2006-04-30 | 4 | -80/+121 |
| * | Use schema search path to find the first matching contraint name for SET | Bruce Momjian | 2006-04-27 | 1 | -2/+2 |
| * | Back out RESET CONNECTION until there is more discussion. | Bruce Momjian | 2006-04-25 | 1 | -7/+1 |
| * | Add RESET CONNECTION, to reset all aspects of a session. | Bruce Momjian | 2006-04-25 | 1 | -1/+7 |
| * | Back out patch, unintended. | Bruce Momjian | 2006-04-24 | 1 | -8/+1 |
| * | Done: | Bruce Momjian | 2006-04-24 | 1 | -1/+8 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 3 | -8/+8 |