aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAge
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Fix EquivalenceClass code to handle volatile sort expressions in a moreTom Lane2007-11-08
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-11
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-20
* Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane2007-09-06
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-03
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-31
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Fix outfuncs.c to dump A_Const nodes representing NULLs correctly. This hasTom Lane2007-07-17
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-23
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-11
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-11
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-05
* Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane2007-06-01
* Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane2007-05-22
* Fix best_inner_indexscan to return both the cheapest-total-cost andTom Lane2007-05-22
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-27
* Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane2007-04-26
* Rename the newly-added commands for discarding session state.Neil Conway2007-04-26
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-02
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-27
* Fix up the remaining places where the expression node structure would loseTom Lane2007-03-17
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Get rid of the separate EState for subplans, and just let them share theTom Lane2007-02-27
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-22
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-20
* Get rid of some old and crufty global variables in the planner. WhenTom Lane2007-02-19
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-19
* Avoid infinite recursion when dumping new planner EquivalenceClass trees.Tom Lane2007-02-12
* StrNCpy -> strlcpy (not complete)Peter Eisentraut2007-02-10
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-03
* Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane2007-01-23
* Put back planner's ability to cache the results of mergejoinscansel(),Tom Lane2007-01-22
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-20
* Remove remains of old depend target.Peter Eisentraut2007-01-20
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-10
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-09
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-30
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-24
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-23
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-21
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-10
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-05
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-13
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane2006-09-27