summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
Commit message (Expand)AuthorAgeFilesLines
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix potential failure when hashing the output of a subplan that producesTom Lane2010-07-281-3/+4
* pgindent run for 9.0Bruce Momjian2010-02-261-27/+28
* Extend the set of frame options supported for window functions.Tom Lane2010-02-121-7/+20
* Add support for doing FULL JOIN ON FALSE. While this is really a ratherTom Lane2010-01-051-1/+3
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane2010-01-011-3/+2
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-151-2/+2
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-1/+7
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-2/+5
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-14/+44
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-121-6/+25
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-101-7/+17
* Replace the array-style TupleTable data structure with a simple List ofTom Lane2009-09-271-2/+2
* Tweak ExecIndexEvalRuntimeKeys to forcibly detoast any toasted comparisonTom Lane2009-08-231-1/+2
* Improve plpgsql's ability to cope with rowtypes containing dropped columns,Tom Lane2009-08-061-6/+4
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-44/+46
* XMLATTRIBUTES() should send the attribute values throughPeter Eisentraut2009-04-081-2/+1
* Refactor ExecProject and associated routines so that fast-path code is usedTom Lane2009-04-021-8/+19
* Optimize multi-batch hash joins when the outer relation has a nonuniformTom Lane2009-03-211-4/+6
* Implement prefetching via posix_fadvise() for bitmap index scans. A newTom Lane2009-01-121-1/+7
* Revise the TIDBitmap API to support multiple concurrent iterations over aTom Lane2009-01-101-1/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Add some basic support for window frame clauses to the window-functionsTom Lane2008-12-311-2/+4
* Support window functions a la SQL:2008.Tom Lane2008-12-281-4/+65
* Modify UPDATE/DELETE WHERE CURRENT OF to use the FOR UPDATE infrastructure toTom Lane2008-11-161-1/+2
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-151-2/+7
* Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETETom Lane2008-10-311-3/+5
* Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane2008-10-291-2/+5
* Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane2008-10-281-7/+24
* Remove useless ps_OuterTupleSlot field from PlanState. I suppose this wasTom Lane2008-10-231-5/+4
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-071-1/+7
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-1/+58
* Improve tuplestore.c to support multiple concurrent read positions.Tom Lane2008-10-011-2/+2
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-221-1/+12
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-071-9/+19
* As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane2008-07-261-5/+1
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-191-4/+8
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-301-1/+4
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-4/+4
* pgindent run for 8.3.Bruce Momjian2007-11-151-13/+13
* Fix UPDATE/DELETE WHERE CURRENT OF to support repeated update and update-Tom Lane2007-10-241-1/+3
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-201-1/+8
* Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane2007-08-151-2/+5
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-051-1/+14
* Teach tuplestore.c to throw away data before the "mark" point when the callerTom Lane2007-05-211-2/+4
* Fix parameter recalculation for Limit nodes: during a ReScan call we mustTom Lane2007-05-171-1/+2
* Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane2007-05-041-1/+5
* Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane2007-04-261-2/+14