summaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAgeFilesLines
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-201-4/+3
* Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane2007-09-061-5/+6
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-032-34/+8
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-313-3/+9
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-173-3/+6
* Fix outfuncs.c to dump A_Const nodes representing NULLs correctly. This hasTom Lane2007-07-171-1/+5
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-1/+15
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-114-4/+8
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-114-4/+61
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-054-4/+73
* Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane2007-06-011-25/+13
* Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane2007-05-223-3/+6
* Fix best_inner_indexscan to return both the cheapest-total-cost andTom Lane2007-05-221-2/+3
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-274-13/+15
* Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane2007-04-261-2/+6
* Rename the newly-added commands for discarding session state.Neil Conway2007-04-262-2/+26
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-022-2/+28
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-274-4/+85
* Fix up the remaining places where the expression node structure would loseTom Lane2007-03-175-10/+20
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-134-9/+35
* Get rid of the separate EState for subplans, and just let them share theTom Lane2007-02-272-2/+5
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-224-180/+15
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-204-44/+115
* Get rid of some old and crufty global variables in the planner. WhenTom Lane2007-02-191-1/+29
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-192-2/+22
* Avoid infinite recursion when dumping new planner EquivalenceClass trees.Tom Lane2007-02-121-4/+4
* StrNCpy -> strlcpy (not complete)Peter Eisentraut2007-02-101-5/+5
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-034-4/+56
* Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane2007-01-232-2/+90
* Put back planner's ability to cache the results of mergejoinscansel(),Tom Lane2007-01-222-2/+9
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-204-70/+115
* Remove remains of old depend target.Peter Eisentraut2007-01-201-8/+1
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-103-9/+64
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-094-6/+29
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-0514-28/+28
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-304-16/+15
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-244-69/+73
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-234-8/+18
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-214-4/+69
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-104-4/+8
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-052-4/+4
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-132-4/+2
* pgindent run for 8.2.Bruce Momjian2006-10-044-13/+13
* Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane2006-09-271-2/+2
* Improve usage of effective_cache_size parameter by assuming that all theTom Lane2006-09-191-1/+2
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-302-2/+4
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-253-3/+6
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-214-7/+18
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-124-6/+20
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-104-4/+8