| Commit message (Expand) | Author | Age | Files | Lines |
| * | Modify error context callback functions to not assume that they can fetch | Tom Lane | 2010-03-19 | 1 | -51/+54 |
| * | pgindent run for 9.0 | Bruce Momjian | 2010-02-26 | 1 | -32/+32 |
| * | Wrap calls to SearchSysCache and related functions using macros. | Robert Haas | 2010-02-14 | 1 | -10/+5 |
| * | Fix thinko in my recent change to put an explicit argisrow field in NullTest: | Tom Lane | 2010-01-19 | 1 | -6/+8 |
| * | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | 1 | -2/+2 |
| * | Add an "argisrow" field to NullTest nodes, following a plan made way back in | Tom Lane | 2010-01-01 | 1 | -5/+7 |
| * | Support ORDER BY within aggregate function calls, at long last providing a | Tom Lane | 2009-12-15 | 1 | -9/+10 |
| * | Fix a bug introduced when set-returning SQL functions were made inline-able: | Tom Lane | 2009-12-14 | 1 | -5/+17 |
| * | Support use of function argument names to identify which actual arguments | Tom Lane | 2009-10-08 | 1 | -71/+255 |
| * | Teach simplify_boolean_equality to simplify the forms foo <> true and | Tom Lane | 2009-07-20 | 1 | -16/+40 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 1 | -47/+48 |
| * | Get rid of the rather fuzzily defined FlattenedSubLink node type in favor of | Tom Lane | 2009-02-25 | 1 | -37/+1 |
| * | Arrange for function default arguments to be processed properly in expressions | Tom Lane | 2009-01-09 | 1 | -3/+10 |
| * | Fix an oversight in the function-default-arguments patch: after adding some | Tom Lane | 2009-01-06 | 1 | -7/+24 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 1 | -2/+2 |
| * | Support window functions a la SQL:2008. | Tom Lane | 2008-12-28 | 1 | -2/+122 |
| * | Code review for function default parameters patch. Fix numerous problems as | Tom Lane | 2008-12-18 | 1 | -12/+96 |
| * | Add a concept of "placeholder" variables to the planner. These are variables | Tom Lane | 2008-10-21 | 1 | -1/+28 |
| * | Improve the recently-added code for inlining set-returning functions so that | Tom Lane | 2008-10-09 | 1 | -13/+65 |
| * | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane | 2008-10-04 | 1 | -1/+2 |
| * | Improve the plan cache invalidation mechanism to make it invalidate plans | Tom Lane | 2008-09-09 | 1 | -1/+23 |
| * | Extend the parser location infrastructure to include a location field in | Tom Lane | 2008-08-28 | 1 | -1/+16 |
| * | Teach eval_const_expressions() to simplify an ArrayCoerceExpr to a constant | Tom Lane | 2008-08-26 | 1 | -1/+36 |
| * | Move exprType(), exprTypmod(), expression_tree_walker(), and related routines | Tom Lane | 2008-08-25 | 1 | -1228/+4 |
| * | Arrange to convert EXISTS subqueries that are equivalent to hashable IN | Tom Lane | 2008-08-22 | 1 | -3/+23 |
| * | Implement SEMI and ANTI joins in the planner and executor. (Semijoins replace | Tom Lane | 2008-08-14 | 1 | -12/+358 |
| * | Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow, | Tom Lane | 2008-08-07 | 1 | -1/+4 |
| * | Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT items | Tom Lane | 2008-08-02 | 1 | -80/+1 |
| * | Add code to eval_const_expressions() to support const-simplification of | Tom Lane | 2008-05-15 | 1 | -1/+66 |
| * | Restructure some header files a bit, in particular heapam.h, by removing some | Alvaro Herrera | 2008-05-12 | 1 | -2/+1 |
| * | Fix an oversight I made in a cleanup patch over a year ago: | Tom Lane | 2008-04-01 | 1 | -3/+9 |
| * | Simplify and standardize conversions between TEXT datums and ordinary C | Tom Lane | 2008-03-25 | 1 | -4/+4 |
| * | Arrange to "inline" SQL functions that appear in a query's FROM clause, | Tom Lane | 2008-03-18 | 1 | -22/+306 |
| * | The original implementation of polymorphic aggregates didn't really get the | Tom Lane | 2008-01-11 | 1 | -2/+3 |
| * | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 1 | -2/+2 |
| * | Save one syscache lookup when examining volatility or strictness of | Tom Lane | 2007-11-22 | 1 | -12/+23 |
| * | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 1 | -37/+40 |
| * | Ensure that the result of evaluating a function during constant-expression | Tom Lane | 2007-10-11 | 1 | -3/+14 |
| * | Make eval_const_expressions() preserve typmod when simplifying something like | Tom Lane | 2007-09-06 | 1 | -3/+3 |
| * | Implement function-local GUC parameter settings, as per recent discussion. | Tom Lane | 2007-09-03 | 1 | -1/+3 |
| * | Separate parse-analysis for utility commands out of parser/analyze.c | Tom Lane | 2007-06-23 | 1 | -10/+4 |
| * | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | 1 | -1/+3 |
| * | Downgrade implicit casts to text to be assignment-only, except for the ones | Tom Lane | 2007-06-05 | 1 | -1/+67 |
| * | Fix a thinko in my patch of a couple months ago for bug #3116: it did the | Tom Lane | 2007-05-01 | 1 | -4/+4 |
| * | Marginal performance hack: avoid unnecessary work in expression_tree_mutator. | Tom Lane | 2007-04-30 | 1 | -4/+25 |
| * | Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve the | Tom Lane | 2007-04-27 | 1 | -2/+3 |
| * | Support enum data types. Along the way, use macros for the values of | Tom Lane | 2007-04-02 | 1 | -4/+3 |
| * | Fix array coercion expressions to ensure that the correct volatility is | Tom Lane | 2007-03-27 | 1 | -11/+58 |
| * | Fix up the remaining places where the expression node structure would lose | Tom Lane | 2007-03-17 | 1 | -25/+31 |
| * | First phase of plan-invalidation project: create a plan cache management | Tom Lane | 2007-03-13 | 1 | -33/+1 |