aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAge
* Allow btree comparison functions to return INT_MIN.Tom Lane2018-10-05
* Fix failure in WHERE CURRENT OF after rewinding the referenced cursor.Tom Lane2018-09-23
* Fix failure with initplans used conditionally during EvalPlanQual rechecks.Tom Lane2018-09-15
* Save/restore SPI's global variables in SPI_connect() and SPI_finish().Tom Lane2018-09-07
* Set scan direction appropriately for SubPlans (bug #15336)Andrew Gierth2018-08-17
* Fix misc typos, mostly in comments.Heikki Linnakangas2018-07-18
* Fix WHERE CURRENT OF when the referenced cursor uses an index-only scan.Tom Lane2018-03-17
* Fix query-lifespan memory leakage in repeatedly executed hash joins.Tom Lane2018-03-16
* Fix misbehavior of CTE-used-in-a-subplan during EPQ rechecks.Tom Lane2018-02-19
* Fix corner-case coredump in _SPI_error_callback().Tom Lane2017-12-11
* Fix creation of resjunk tlist entries for inherited mixed UPDATE/DELETE.Tom Lane2017-11-27
* Repair failure with SubPlans in multi-row VALUES lists.Tom Lane2017-11-25
* Revert bogus fixes of HOT-freezing bugAlvaro Herrera2017-11-02
* Fix crash when logical decoding is invoked from a PL function.Tom Lane2017-10-06
* Fix traversal of half-frozen update chainsAlvaro Herrera2017-10-06
* Fix typo in comment.Heikki Linnakangas2017-06-21
* Make sure that hash join's bulk-tuple-transfer loops are interruptible.Tom Lane2017-02-15
* Fix typos in comments.Heikki Linnakangas2017-02-06
* Throw suitable error for COPY TO STDOUT/FROM STDIN in a SQL function.Tom Lane2017-01-14
* Fix handling of expanded objects in CoerceToDomain and CASE execution.Tom Lane2016-12-22
* Improve speed of aggregates that use array_append as transition function.Tom Lane2016-10-30
* Avoid testing tuple visibility without buffer lock.Tom Lane2016-10-23
* Don't throw serialization errors for self-conflicts in INSERT ON CONFLICT.Tom Lane2016-10-23
* Be sure to rewind the tuplestore read pointer in non-leader CTEScan nodes.Tom Lane2016-09-22
* Fix improper repetition of previous results from a hashed aggregate.Tom Lane2016-08-24
* Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.Tom Lane2016-08-11
* Fix two errors with nested CASE/WHEN constructs.Tom Lane2016-08-08
* Fix constant-folding of ROW(...) IS [NOT] NULL with composite fields.Tom Lane2016-07-26
* Fix failure to handle conflicts in non-arbiter exclusion constraints.Tom Lane2016-07-04
* Properly initialize SortSupport for ORDER BY rechecks in nodeIndexscan.c.Tom Lane2016-06-05
* Mark read/write expanded values as read-only in ValuesNext(), too.Tom Lane2016-06-03
* Mark read/write expanded values as read-only in ExecProject().Tom Lane2016-06-03
* Fix latent crash in do_text_output_multiline().Tom Lane2016-05-23
* Remove trailing commas in enums.Andres Freund2016-04-14
* Fix _SPI_execute_plan() for CREATE TABLE IF NOT EXISTS foo AS ...Tom Lane2016-04-11
* Fix EvalPlanQual bug when query contains both locked and not-locked rels.Tom Lane2016-03-22
* Avoid incorrectly indicating exclusion constraint waitStephen Frost2016-03-15
* ExecHashRemoveNextSkewBucket must physically copy tuples to main hashtable.Tom Lane2016-02-07
* Improve HJDEBUG code a bit.Tom Lane2016-02-06
* When modifying a foreign table, initialize tableoid field properly.Robert Haas2016-02-04
* Improve some messagesPeter Eisentraut2015-12-10
* Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.Andres Freund2015-12-10
* Allow foreign and custom joins to handle EvalPlanQual rechecks.Robert Haas2015-12-08
* Message style improvementsPeter Eisentraut2015-10-28
* Allow FDWs to push down quals without breaking EvalPlanQual rechecks.Robert Haas2015-10-15
* Improve INSERT .. ON CONFLICT error message.Robert Haas2015-10-13
* Further twiddling of nodeHash.c hashtable sizing calculation.Tom Lane2015-10-04
* Fix some issues in new hashtable size calculations in nodeHash.c.Tom Lane2015-10-04
* Fix ON CONFLICT DO UPDATE for tables with oids.Andres Freund2015-09-28
* RLS refactoringStephen Frost2015-09-15