summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeSubplan.c
AgeCommit message (Expand)Author
2013-01-01Update copyrights for 2013Bruce Momjian
2012-10-11Fix cross-type case in partial row matching for hashed subplans.Tom Lane
2012-08-30Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera
2012-08-28Split heapam_xlog.h from heapam.hAlvaro Herrera
2012-06-21Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-09-04Clean up the #include mess a little.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-05-23Install defenses against overflow in BuildTupleHashTable().Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-07-28Fix potential failure when hashing the output of a subplan that producesTom Lane
2010-07-12Make NestLoop plan nodes pass outer-relation variables into their innerTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-09-27Replace the array-style TupleTable data structure with a simple List ofTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-04-02Revert DTrace patch from Robert LorBruce Momjian
2009-04-02Add support for additional DTrace probes.Bruce Momjian
2009-01-01Update copyright for 2009.Bruce Momjian
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-08-22Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-08-26Make ARRAY(SELECT ...) return an empty array, rather than a NULL, when theTom Lane
2007-05-17Fix parameter recalculation for Limit nodes: during a ReScan call we mustTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-02-27Get rid of the separate EState for subplans, and just let them share theTom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-06Add support for cross-type hashing in hashed subplans (hashed IN/NOT IN casesTom Lane
2007-02-02Repair failure to check that a table is still compatible with a previouslyTom Lane
2007-01-30Add support for cross-type hashing in hash index searches and hash joins.Tom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-26Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-14Fix a passel of recently-committed violations of the rule 'thou shaltTom Lane
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-06-28Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-28Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane
2005-12-28Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane