| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use appendrel planning logic for top-level UNION ALL structures. | Tom Lane | 2010-11-08 | 1 | -11/+110 |
| * | Reimplement planner's handling of MIN/MAX aggregate optimization. | Tom Lane | 2010-11-04 | 2 | -0/+2 |
| * | Oops, missed one fix for EquivalenceClass rearrangement. | Tom Lane | 2010-10-29 | 1 | -3/+3 |
| * | Fix incorrect generation of whole-row variables in planner. | Tom Lane | 2010-10-19 | 1 | -5/+3 |
| * | Improve the planner's simplification of NOT constructs. | Tom Lane | 2010-10-10 | 1 | -154/+221 |
| * | Support triggers on views. | Tom Lane | 2010-10-10 | 1 | -42/+8 |
| * | Teach CLUSTER to use seqscan-and-sort when it's faster than indexscan. | Tom Lane | 2010-10-07 | 1 | -1/+2 |
| * | Remove cvs keywords from all files. | Magnus Hagander | 2010-09-20 | 5 | -5/+5 |
| * | Small refactoring of makeVar() from a TargetEntry | Peter Eisentraut | 2010-08-27 | 1 | -6/+2 |
| * | pgindent run for 9.0, second run | Bruce Momjian | 2010-07-06 | 2 | -5/+5 |
| * | Fix mishandling of whole-row Vars referencing a view or sub-select. | Tom Lane | 2010-06-21 | 1 | -1/+5 |
| * | Fix incorrect patch that removed permission checks on inheritance child | Tom Lane | 2010-05-11 | 1 | -11/+8 |
| * | pgindent run for 9.0 | Bruce Momjian | 2010-02-26 | 3 | -38/+37 |
| * | Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME. | Robert Haas | 2010-02-01 | 1 | -2/+2 |
| * | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | 4 | -8/+8 |
| * | When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan node | Tom Lane | 2009-10-28 | 1 | -1/+8 |
| * | Re-implement EvalPlanQual processing to improve its performance and eliminate | Tom Lane | 2009-10-26 | 3 | -51/+85 |
| * | When querying a table with child tables, do not check permissions on the | Peter Eisentraut | 2009-10-23 | 1 | -1/+2 |
| * | Move the handling of SELECT FOR UPDATE locking and rechecking out of | Tom Lane | 2009-10-12 | 2 | -18/+16 |
| * | Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c. | Tom Lane | 2009-10-10 | 1 | -3/+3 |
| * | Fix subquery pullup to wrap a PlaceHolderVar around the entire RowExpr | Tom Lane | 2009-09-02 | 2 | -147/+252 |
| * | Put back adjust_appendrel_attrs()'s code for dealing with RestrictInfo. | Tom Lane | 2009-08-13 | 1 | -2/+57 |
| * | Fix set_append_rel_pathlist() to deal intelligently with cases where | Tom Lane | 2009-07-06 | 1 | -52/+2 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 2 | -118/+120 |
| * | Modify find_inheritance_children() and find_all_inheritors() to add the | Tom Lane | 2009-05-12 | 1 | -31/+31 |
| * | Do some minor code refactoring in preparation for changing the APIs of | Tom Lane | 2009-05-12 | 1 | -43/+2 |
| * | Improve pull_up_subqueries logic so that it doesn't insert unnecessary | Tom Lane | 2009-04-28 | 1 | -67/+143 |
| * | Fix estimate_num_groups() to not fail on PlaceHolderVars, per report from | Tom Lane | 2009-04-19 | 1 | -2/+3 |
| * | Modify the relcache to record the temp status of both local and nonlocal | Tom Lane | 2009-03-31 | 1 | -9/+11 |
| * | Fix column privilege checking for cases where parent and child have different | Tom Lane | 2009-03-05 | 1 | -1/+70 |
| * | Temporarily (I hope) disable flattening of IN/EXISTS sublinks that are within | Tom Lane | 2009-02-27 | 1 | -1/+14 |
| * | Get rid of the rather fuzzily defined FlattenedSubLink node type in favor of | Tom Lane | 2009-02-25 | 2 | -125/+120 |
| * | Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge join | Tom Lane | 2009-02-06 | 1 | -2/+3 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 4 | -8/+8 |
| * | Support window functions a la SQL:2008. | Tom Lane | 2008-12-28 | 2 | -3/+8 |
| * | Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the plan | Tom Lane | 2008-11-15 | 2 | -7/+59 |
| * | Ensure that the phrels sets of PlaceHolderVars appearing in an AppendRelInfo's | Tom Lane | 2008-11-11 | 1 | -6/+10 |
| * | Get rid of adjust_appendrel_attr_needed(), which has been broken ever since | Tom Lane | 2008-11-11 | 2 | -110/+33 |
| * | Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple, | Tom Lane | 2008-11-02 | 1 | -2/+2 |
| * | Dept of better ideas: refrain from creating the planner's placeholder_list | Tom Lane | 2008-10-22 | 2 | -67/+27 |
| * | Add a concept of "placeholder" variables to the planner. These are variables | Tom Lane | 2008-10-21 | 3 | -100/+191 |
| * | Improve the recently-added code for inlining set-returning functions so that | Tom Lane | 2008-10-09 | 1 | -2/+2 |
| * | Extend CTE patch to support recursive UNION (ie, without ALL). The | Tom Lane | 2008-10-07 | 1 | -5/+40 |
| * | When expanding a whole-row Var into a RowExpr during ResolveNew(), attach | Tom Lane | 2008-10-06 | 1 | -1/+2 |
| * | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane | 2008-10-04 | 2 | -10/+84 |
| * | Extend the parser location infrastructure to include a location field in | Tom Lane | 2008-08-28 | 3 | -3/+9 |
| * | Move exprType(), exprTypmod(), expression_tree_walker(), and related routines | Tom Lane | 2008-08-25 | 2 | -5/+4 |
| * | Improve sublink pullup code to handle ANY/EXISTS sublinks that are at top | Tom Lane | 2008-08-17 | 1 | -40/+235 |
| * | Fix pull_up_simple_union_all to copy all rtable entries from child subquery to | Heikki Linnakangas | 2008-08-14 | 1 | -30/+38 |
| * | Implement SEMI and ANTI joins in the planner and executor. (Semijoins replace | Tom Lane | 2008-08-14 | 2 | -104/+311 |