summaryrefslogtreecommitdiff
path: root/src/backend/executor
AgeCommit message (Expand)Author
2016-09-22Be sure to rewind the tuplestore read pointer in non-leader CTEScan nodes.Tom Lane
2016-08-24Fix improper repetition of previous results from a hashed aggregate.Tom Lane
2016-08-08Fix two errors with nested CASE/WHEN constructs.Tom Lane
2016-07-26Fix constant-folding of ROW(...) IS [NOT] NULL with composite fields.Tom Lane
2016-05-23Fix latent crash in do_text_output_multiline().Tom Lane
2015-10-04Further twiddling of nodeHash.c hashtable sizing calculation.Tom Lane
2015-10-04Fix possible "invalid memory alloc request size" failure in nodeHash.c.Tom Lane
2015-08-21Avoid O(N^2) behavior when enlarging SPI tuple table in spi_printtup().Tom Lane
2015-07-30Avoid some zero-divide hazards in the planner.Tom Lane
2015-03-24Fix ExecOpenScanRelation to take a lock on a ROW_MARK_COPY relation.Tom Lane
2015-03-12Ensure tableoid reads correctly in EvalPlanQual-manufactured tuples.Tom Lane
2015-02-17Minor cleanup of column-level priv fixStephen Frost
2015-01-28Fix column-privilege leak in error-message pathsStephen Frost
2015-01-15Fix use-of-already-freed-memory problem in EvalPlanQual processing.Tom Lane
2014-12-11Fix corner case where SELECT FOR UPDATE could return a row twice.Tom Lane
2014-07-11Fix bug with whole-row references to append subplans.Tom Lane
2014-06-19Avoid leaking memory while evaluating arguments for a table function.Tom Lane
2014-05-06Remove tabs after spaces in C commentsBruce Momjian
2014-05-01Fix failure to detoast fields in composite elements of structured types.Tom Lane
2014-01-08Fix "cannot accept a set" error when only some arms of a CASE return a set.Tom Lane
2013-03-10Fix race condition in DELETE RETURNING.Tom Lane
2013-01-24Fix SPI documentation for new handling of ExecutorRun's count parameter.Tom Lane
2012-12-11Add defenses against integer overflow in dynahash numbuckets calculations.Tom Lane
2012-11-29Fix assorted bugs in CREATE INDEX CONCURRENTLY.Tom Lane
2012-10-11Fix cross-type case in partial row matching for hashed subplans.Tom Lane
2012-08-15Fix rescan logic in nodeCtescan.Tom Lane
2012-07-20Fix whole-row Var evaluation to cope with resjunk columns (again).Tom Lane
2012-06-21Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane
2012-03-21Don't allow CREATE TABLE AS to put relations in pg_global.Robert Haas
2012-01-28Fix handling of data-modifying CTE subplans in EvalPlanQual.Tom Lane
2012-01-04Make executor's SELECT INTO code save and restore original tuple receiver.Tom Lane
2011-11-03Fix handling of PlaceHolderVars in nestloop parameter management.Tom Lane
2011-08-21Fix trigger WHEN conditions when both BEFORE and AFTER triggers exist.Tom Lane
2011-08-02Avoid integer overflow when LIMIT + OFFSET >= 2^63.Heikki Linnakangas
2011-07-03Fix bugs in relpersistence handling during table creation.Robert Haas
2011-06-29Move the PredicateLockRelation() call from nodeSeqscan.c to heapam.c. It'sHeikki Linnakangas
2011-06-29Grab predicate locks on matching tuples in a lossy bitmap heap scan.Heikki Linnakangas
2011-06-16Remove another no-longer-needed inclusion of predicate.h.Tom Lane
2011-06-15Make non-MVCC snapshots exempt from predicate locking. Scans with non-MVCCHeikki Linnakangas
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-06-02Disallow SELECT FOR UPDATE/SHARE on sequences.Tom Lane
2011-06-01Allow hash joins to be interrupted while searching hash table for match.Tom Lane
2011-05-23Install defenses against overflow in BuildTupleHashTable().Tom Lane
2011-05-21Reset per-tuple memory context between every row in a scan node, even whenHeikki Linnakangas
2011-04-25Refactor broken CREATE TABLE IF NOT EXISTS support.Robert Haas
2011-04-22Make a code-cleanup pass over the collations patch.Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-04-11Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-27Fix check_exclusion_constraint() to insert correct collations in ScanKeys.Tom Lane