summaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAgeFilesLines
* Remove typename from A_Const.Alvaro Herrera2008-04-293-7/+3
* Push index operator lossiness determination down to GIST/GIN opclassTom Lane2008-04-142-4/+2
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-132-10/+2
* Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane2008-04-101-18/+34
* Remove TypeName struct's timezone flag, which has been write-only storageTom Lane2008-03-213-6/+3
* Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane2008-03-203-3/+38
* Make source code READMEs more consistent. Add CVS tags to all README files.Bruce Momjian2008-03-201-14/+13
* Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut2008-02-191-8/+2
* Add missing copyfuncs/equalfuncs support for AlterTSDictionaryStmt andTom Lane2008-02-072-3/+63
* Fix an omission in the outfuncs.c support for Agg nodes: the grpColIdxNeil Conway2008-01-091-1/+12
* Fix a minor bug in outfuncs support for SetOp: dupOperators is an arrayNeil Conway2008-01-071-2/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-0114-28/+28
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-013-6/+3
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-153-39/+39
* pgindent run for 8.3.Bruce Momjian2007-11-154-51/+51
* Fix EquivalenceClass code to handle volatile sort expressions in a moreTom Lane2007-11-081-1/+2
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-112-2/+5
* 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