summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-271-1/+15
* Get rid of the separate EState for subplans, and just let them share theTom Lane2007-02-271-9/+3
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-2/+2
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-2/+2
* Add support for cross-type hashing in hashed subplans (hashed IN/NOT IN casesTom Lane2007-02-061-5/+20
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane2006-12-261-1/+3
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-241-17/+13
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-211-1/+17
* Refactor ExecGetJunkAttribute to avoid searching for junk attributesTom Lane2006-12-041-3/+8
* Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane2006-09-281-1/+14
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-251-1/+3
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-1/+3
* Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EStateTom Lane2006-08-041-2/+2
* Arrange for ValuesScan to keep per-sublist expression eval state in aTom Lane2006-08-021-3/+10
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-1/+22
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-271-2/+2
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-261-4/+4
* Allow include files to compile own their own.Bruce Momjian2006-07-131-4/+1
* Fix hash aggregation to suppress unneeded columns from being stored inTom Lane2006-06-281-1/+3
* Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane2006-06-281-2/+2
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-301-3/+3
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane2006-02-281-2/+4
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-281-2/+14
* Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane2005-12-021-1/+10
* Tweak hash join code to use an additional heuristic for deciding whetherTom Lane2005-11-281-1/+3
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-261-4/+4
* Change seqscan logic so that we check visibility of all tuples on a pageTom Lane2005-11-261-7/+1
* Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane2005-11-251-11/+38
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-5/+5
* Prevent ExecInsert() and ExecUpdate() from scribbling on the result tupleTom Lane2005-11-141-1/+3
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-33/+28
* The original patch to avoid building a hash join's hashtable when theTom Lane2005-09-251-2/+3
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-011-3/+4