| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add the ability to create indexes 'concurrently', that is, without | Tom Lane | 2006-08-25 | 1 | -1/+13 |
| * | Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this was | Tom Lane | 2006-08-12 | 1 | -2/+1 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 1 | -1/+4 |
| * | Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged have | Tom Lane | 2006-08-10 | 1 | -1/+3 |
| * | Extend relation_excluded_by_constraints() to check for mutually | Tom Lane | 2006-08-05 | 1 | -6/+43 |
| * | Teach predicate_refuted_by() how to do proofs involving NOT-clauses. | Tom Lane | 2006-08-05 | 1 | -4/+74 |
| * | Teach eval_const_expressions to simplify BooleanTest nodes that have | Tom Lane | 2006-08-04 | 1 | -1/+53 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 4 | -9/+55 |
| * | Change the relation_open protocol so that we obtain lock on a relation | Tom Lane | 2006-07-31 | 2 | -11/+20 |
| * | Aggregate functions now support multiple input arguments. I also took | Tom Lane | 2006-07-27 | 1 | -20/+38 |
| * | In the recent changes to make the planner account better for cache | Tom Lane | 2006-07-22 | 1 | -7/+7 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 6 | -18/+6 |
| * | Alphabetically order reference to include files, "N" - "S". | Bruce Momjian | 2006-07-11 | 1 | -3/+3 |
| * | Revise the planner's handling of "pseudoconstant" WHERE clauses, that is | Tom Lane | 2006-07-01 | 3 | -82/+118 |
| * | Fix problems with cached tuple descriptors disappearing while still in use | Tom Lane | 2006-06-16 | 1 | -1/+8 |
| * | Make the planner estimate costs for nestloop inner indexscans on the basis | Tom Lane | 2006-06-06 | 1 | -9/+12 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 1 | -30/+29 |
| * | Fix make_restrictinfo_from_bitmapqual() to preserve AND/OR flatness of its | Tom Lane | 2006-04-07 | 1 | -8/+39 |
| * | Improve parser so that we can show an error cursor position for errors | Tom Lane | 2006-03-14 | 1 | -2/+2 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 9 | -18/+18 |
| * | Improve the tests to see if ScalarArrayOpExpr is strict. Original coding | Tom Lane | 2006-02-06 | 1 | -5/+59 |
| * | Improve my initial, rather hacky implementation of joins to append | Tom Lane | 2006-02-05 | 1 | -143/+1 |
| * | Fix constraint exclusion to work in inherited UPDATE/DELETE queries | Tom Lane | 2006-02-04 | 1 | -2/+50 |
| * | Teach planner to convert simple UNION ALL subqueries into append relations, | Tom Lane | 2006-02-03 | 2 | -2/+180 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 3 | -103/+58 |
| * | Allow row comparisons to be used as indexscan qualifications. | Tom Lane | 2006-01-25 | 1 | -3/+70 |
| * | Make all command-line options of postmaster and postgres the same. See | Peter Eisentraut | 2006-01-05 | 1 | -2/+2 |
| * | Implement SQL-compliant treatment of row comparisons for < <= > >= cases | Tom Lane | 2005-12-28 | 1 | -19/+45 |
| * | Teach planner how to rearrange join order for some classes of OUTER JOIN. | Tom Lane | 2005-12-20 | 2 | -6/+132 |
| * | Teach predtest.c how to reason about ScalarArrayOpExpr clauses as though | Tom Lane | 2005-11-27 | 1 | -258/+661 |
| * | Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so that | Tom Lane | 2005-11-26 | 1 | -11/+5 |
| * | Teach planner and executor to handle ScalarArrayOpExpr as an indexable | Tom Lane | 2005-11-25 | 1 | -2/+2 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 4 | -28/+28 |
| * | Make SQL arrays support null elements. This commit fixes the core array | Tom Lane | 2005-11-17 | 1 | -3/+4 |
| * | make_restrictinfo() failed to attach the specified required_relids to | Tom Lane | 2005-11-16 | 1 | -8/+17 |
| * | Restore the former RestrictInfo field valid_everywhere (but invert the flag | Tom Lane | 2005-11-14 | 1 | -11/+31 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 8 | -503/+486 |
| * | Don't try to remove duplicate OR-subclauses in create_bitmap_subplan and | Tom Lane | 2005-10-13 | 1 | -8/+12 |
| * | Fix oversight in indexscan plan creation. I recently added code to use | Tom Lane | 2005-10-06 | 1 | -2/+2 |
| * | Make use of new list primitives list_append_unique and list_concat_unique | Tom Lane | 2005-07-28 | 1 | -3/+3 |
| * | Fix a bunch of bad interactions between partial indexes and the new | Tom Lane | 2005-07-28 | 1 | -18/+76 |
| * | Simple constraint exclusion. For now, only child tables of inheritance | Tom Lane | 2005-07-23 | 2 | -73/+459 |
| * | Fix compare_fuzzy_path_costs() to behave a bit more sanely. The original | Tom Lane | 2005-07-22 | 1 | -37/+18 |
| * | Fix overenthusiastic optimization of 'x IN (SELECT DISTINCT ...)' and related | Tom Lane | 2005-07-15 | 1 | -45/+120 |
| * | Don't try to constant-fold functions returning RECORD. We were never | Tom Lane | 2005-07-03 | 1 | -7/+11 |
| * | Teach planner about some cases where a restriction clause can be | Tom Lane | 2005-07-02 | 1 | -32/+14 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 1 | -2/+18 |
| * | Change the planner to allow indexscan qualification clauses to use | Tom Lane | 2005-06-13 | 1 | -2/+3 |
| * | Separate predicate-testing code out of indxpath.c, making it a module | Tom Lane | 2005-06-10 | 2 | -3/+674 |
| * | Simplify the planner's join clause management by storing join clauses | Tom Lane | 2005-06-09 | 3 | -134/+91 |