| Commit message (Expand) | Author | Age | Files | Lines |
| * | Avoid assuming that statistics for a parent relation reflect the properties of | Tom Lane | 2006-05-02 | 1 | -1/+8 |
| * | Improve the representation of FOR UPDATE/FOR SHARE so that we can | Tom Lane | 2006-04-30 | 5 | -34/+14 |
| * | Remove the restriction originally coded into optimize_minmax_aggregates() that | Tom Lane | 2006-04-28 | 2 | -25/+5 |
| * | The 8.1 planner removes WHERE quals from the plan when the quals are | Tom Lane | 2006-04-25 | 1 | -10/+32 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 2 | -35/+34 |
| * | Revert my best_inner_indexscan patch of yesterday, which turns out to have | Tom Lane | 2006-04-09 | 1 | -64/+100 |
| * | Fix best_inner_indexscan to actually enforce that an "inner indexscan" use | Tom Lane | 2006-04-08 | 1 | -22/+30 |
| * | Fix make_restrictinfo_from_bitmapqual() to preserve AND/OR flatness of its | Tom Lane | 2006-04-07 | 1 | -8/+39 |
| * | Fix a bunch of problems with domains by making them use special input functions | Tom Lane | 2006-04-05 | 1 | -2/+2 |
| * | Improve parser so that we can show an error cursor position for errors | Tom Lane | 2006-03-14 | 2 | -5/+6 |
| * | Remove the stub support we had for UNION JOIN; per discussion, this is | Tom Lane | 2006-03-07 | 3 | -27/+3 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 35 | -70/+70 |
| * | Improve tuplesort.c to support variable merge order. The original coding | Tom Lane | 2006-02-19 | 1 | -9/+12 |
| * | Fix qual_is_pushdown_safe to not try to push down quals involving a whole-row | Tom Lane | 2006-02-13 | 1 | -7/+17 |
| * | 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 | 5 | -259/+99 |
| * | Fix constraint exclusion to work in inherited UPDATE/DELETE queries | Tom Lane | 2006-02-04 | 3 | -61/+87 |
| * | Teach planner to convert simple UNION ALL subqueries into append relations, | Tom Lane | 2006-02-03 | 7 | -379/+875 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 10 | -465/+822 |
| * | When building a bitmap scan, must copy the bitmapqualorig expression tree | Tom Lane | 2006-01-29 | 1 | -1/+7 |
| * | Fix Assert that's no longer correct now that RowCompareExpr is indexable. | Tom Lane | 2006-01-29 | 1 | -8/+4 |
| * | Fix code that checks to see if an index can be considered to match the query's | Tom Lane | 2006-01-29 | 2 | -10/+18 |
| * | Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flag | Tom Lane | 2006-01-26 | 1 | -19/+3 |
| * | Allow row comparisons to be used as indexscan qualifications. | Tom Lane | 2006-01-25 | 3 | -22/+429 |
| * | Add selectivity-calculation code for RowCompareExpr nodes. Simplistic, | Tom Lane | 2006-01-14 | 1 | -1/+9 |
| * | 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 | 3 | -182/+232 |
| * | Teach planner how to rearrange join order for some classes of OUTER JOIN. | Tom Lane | 2005-12-20 | 10 | -622/+811 |
| * | In a nestloop inner indexscan, it's OK to use pushed-down baserestrictinfo | Tom Lane | 2005-12-06 | 1 | -22/+12 |
| * | Tweak choose_bitmap_and() heuristics in the light of example provided in bug | Tom Lane | 2005-11-30 | 1 | -8/+54 |
| * | 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 | 6 | -66/+169 |
| * | Teach push_nots() how to negate a ScalarArrayOpExpr. In passing, save | Tom Lane | 2005-11-26 | 1 | -6/+35 |
| * | Teach planner and executor to handle ScalarArrayOpExpr as an indexable | Tom Lane | 2005-11-25 | 5 | -104/+283 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 24 | -269/+274 |
| * | 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 | 4 | -21/+56 |
| * | Thinking further, it seems we had better also copy down resorigtbl/resorigcol | Tom Lane | 2005-11-03 | 1 | -3/+6 |
| * | Fix the recently-added code that eliminates unnecessary SubqueryScan nodes | Tom Lane | 2005-11-03 | 1 | -1/+16 |
| * | Fix longstanding bug that would sometimes let the planner generate a bad plan | Tom Lane | 2005-10-25 | 1 | -32/+37 |
| * | Fix oversight in recent changes to enable the 'physical tlist' | Tom Lane | 2005-10-19 | 1 | -13/+10 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 35 | -2580/+2479 |
| * | Don't try to remove duplicate OR-subclauses in create_bitmap_subplan and | Tom Lane | 2005-10-13 | 2 | -16/+24 |
| * | Fix oversight in 8.0 modification of RestrictInfo data structures. | Tom Lane | 2005-10-11 | 1 | -3/+10 |
| * | Fix oversight in indexscan plan creation. I recently added code to use | Tom Lane | 2005-10-06 | 2 | -10/+37 |
| * | Make set_function_size_estimates() marginally smarter: per original | Tom Lane | 2005-10-05 | 1 | -4/+10 |
| * | Repair planning bug introduced in 7.4: outer-join ON clauses that referenced | Tom Lane | 2005-09-28 | 2 | -23/+73 |
| * | Clean up possibly-uninitialized-variable warnings reported by gcc 4.x. | Tom Lane | 2005-09-24 | 3 | -30/+25 |
| * | Fix bug introduced into indexable_outerrelids() by an ill-considered | Tom Lane | 2005-09-22 | 1 | -4/+2 |