| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove typename from A_Const. | Alvaro Herrera | 2008-04-29 | 3 | -7/+3 |
* | Push index operator lossiness determination down to GIST/GIN opclass | Tom Lane | 2008-04-14 | 2 | -4/+2 |
* | Since createplan.c no longer cares whether index operators are lossy, it has | Tom Lane | 2008-04-13 | 2 | -10/+2 |
* | Replace "amgetmulti" AM functions with "amgetbitmap", in which the whole | Tom Lane | 2008-04-10 | 1 | -18/+34 |
* | Remove TypeName struct's timezone flag, which has been write-only storage | Tom Lane | 2008-03-21 | 3 | -6/+3 |
* | Arrange for an explicit cast applied to an ARRAY[] constructor to be applied | Tom Lane | 2008-03-20 | 3 | -3/+38 |
* | Make source code READMEs more consistent. Add CVS tags to all README files. | Bruce Momjian | 2008-03-20 | 1 | -14/+13 |
* | Refactor backend makefiles to remove lots of duplicate code | Peter Eisentraut | 2008-02-19 | 1 | -8/+2 |
* | Add missing copyfuncs/equalfuncs support for AlterTSDictionaryStmt and | Tom Lane | 2008-02-07 | 2 | -3/+63 |
* | Fix an omission in the outfuncs.c support for Agg nodes: the grpColIdx | Neil Conway | 2008-01-09 | 1 | -1/+12 |
* | Fix a minor bug in outfuncs support for SetOp: dupOperators is an array | Neil Conway | 2008-01-07 | 1 | -2/+2 |
* | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 14 | -28/+28 |
* | Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagate | Tom Lane | 2007-12-01 | 3 | -6/+3 |
* | Re-run pgindent with updated list of typedefs. (Updated README should | Bruce Momjian | 2007-11-15 | 3 | -39/+39 |
* | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 4 | -51/+51 |
* | Fix EquivalenceClass code to handle volatile sort expressions in a more | Tom Lane | 2007-11-08 | 1 | -1/+2 |
* | Fix the plan-invalidation mechanism to treat regclass constants that refer to | Tom Lane | 2007-10-11 | 2 | -2/+5 |
* | HOT updates. When we update a tuple without changing any of its indexed | Tom Lane | 2007-09-20 | 1 | -4/+3 |
* | Make eval_const_expressions() preserve typmod when simplifying something like | Tom Lane | 2007-09-06 | 1 | -5/+6 |
* | Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE. | Tom Lane | 2007-09-03 | 2 | -34/+8 |
* | Rewrite make_outerjoininfo's construction of min_lefthand and min_righthand | Tom Lane | 2007-08-31 | 3 | -3/+9 |
* | Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS, | Neil Conway | 2007-07-17 | 3 | -3/+6 |
* | Fix outfuncs.c to dump A_Const nodes representing NULLs correctly. This has | Tom Lane | 2007-07-17 | 1 | -1/+5 |
* | Separate parse-analysis for utility commands out of parser/analyze.c | Tom Lane | 2007-06-23 | 1 | -1/+15 |
* | Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsql | Tom Lane | 2007-06-11 | 4 | -4/+8 |
* | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | 4 | -4/+61 |
* | Downgrade implicit casts to text to be assignment-only, except for the ones | Tom Lane | 2007-06-05 | 4 | -4/+73 |
* | Fix several hash functions that were taking chintzy shortcuts instead of | Tom Lane | 2007-06-01 | 1 | -25/+13 |
* | Repair planner bug introduced in 8.2 by ability to rearrange outer joins: | Tom Lane | 2007-05-22 | 3 | -3/+6 |
* | Fix best_inner_indexscan to return both the cheapest-total-cost and | Tom Lane | 2007-05-22 | 1 | -2/+3 |
* | Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve the | Tom Lane | 2007-04-27 | 4 | -13/+15 |
* | Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scan | Tom Lane | 2007-04-26 | 1 | -2/+6 |
* | Rename the newly-added commands for discarding session state. | Neil Conway | 2007-04-26 | 2 | -2/+26 |
* | Support enum data types. Along the way, use macros for the values of | Tom Lane | 2007-04-02 | 2 | -2/+28 |
* | Fix array coercion expressions to ensure that the correct volatility is | Tom Lane | 2007-03-27 | 4 | -4/+85 |
* | Fix up the remaining places where the expression node structure would lose | Tom Lane | 2007-03-17 | 5 | -10/+20 |
* | First phase of plan-invalidation project: create a plan cache management | Tom Lane | 2007-03-13 | 4 | -9/+35 |
* | Get rid of the separate EState for subplans, and just let them share the | Tom Lane | 2007-02-27 | 2 | -2/+5 |
* | Turn the rangetable used by the executor into a flat list, and avoid storing | Tom Lane | 2007-02-22 | 4 | -180/+15 |
* | Remove the Query structure from the executor's API. This allows us to stop | Tom Lane | 2007-02-20 | 4 | -44/+115 |
* | Get rid of some old and crufty global variables in the planner. When | Tom Lane | 2007-02-19 | 1 | -1/+29 |
* | Put function expressions and values lists into FunctionScan and ValuesScan | Tom Lane | 2007-02-19 | 2 | -2/+22 |
* | Avoid infinite recursion when dumping new planner EquivalenceClass trees. | Tom Lane | 2007-02-12 | 1 | -4/+4 |
* | StrNCpy -> strlcpy (not complete) | Peter Eisentraut | 2007-02-10 | 1 | -5/+5 |
* | Implement XMLSERIALIZE for real. Analogously, make the xml to text cast | Peter Eisentraut | 2007-02-03 | 4 | -4/+56 |
* | Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATOR | Tom Lane | 2007-01-23 | 2 | -2/+90 |
* | Put back planner's ability to cache the results of mergejoinscansel(), | Tom Lane | 2007-01-22 | 2 | -2/+9 |
* | Refactor planner's pathkeys data structure to create a separate, explicit | Tom Lane | 2007-01-20 | 4 | -70/+115 |
* | Remove remains of old depend target. | Peter Eisentraut | 2007-01-20 | 1 | -8/+1 |
* | Change the planner-to-executor API so that the planner tells the executor | Tom Lane | 2007-01-10 | 3 | -9/+64 |