summaryrefslogtreecommitdiff
path: root/src/backend/executor
AgeCommit message (Expand)Author
2015-05-25Fix rescan of IndexScan node with the new lossy GiST distance functions.Heikki Linnakangas
2015-05-24Manual cleanup of pgindent results.Tom Lane
2015-05-24pgindent run for 9.5Bruce Momjian
2015-05-23Add error check for lossy distance functions in index-only scans.Tom Lane
2015-05-23Still more fixes for lossy-GiST-distance-functions patch.Tom Lane
2015-05-21More fixes for lossy-GiST-distance-functions patch.Tom Lane
2015-05-20Collection of typo fixes.Heikki Linnakangas
2015-05-18Attach ON CONFLICT SET ... WHERE to the correct planstate.Andres Freund
2015-05-18Fix typo in comment.Heikki Linnakangas
2015-05-18Fix failure to copy IndexScan.indexorderbyops in copyfuncs.c.Tom Lane
2015-05-16Support GROUPING SETS, CUBE and ROLLUP.Andres Freund
2015-05-15TABLESAMPLE, SQL Standard and extensibleSimon Riggs
2015-05-15Fix datatype confusion with the new lossy GiST distance functions.Heikki Linnakangas
2015-05-15Allow GiST distance function to return merely a lower-bound.Heikki Linnakangas
2015-05-14Support "expanded" objects, particularly arrays, for better performance.Tom Lane
2015-05-13Extend abbreviated key infrastructure to datum tuplesorts.Robert Haas
2015-05-13Fix postgres_fdw to return the right ctid value in EvalPlanQual cases.Tom Lane
2015-05-12Fix ON CONFLICT bugs that manifest when used in rules.Andres Freund
2015-05-12Add support for doing late row locking in FDWs.Tom Lane
2015-05-10Code review for foreign/custom join pushdown patch.Tom Lane
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund
2015-05-07Represent columns requiring insert and update privileges indentently.Andres Freund
2015-05-04Use outerPlanState macro instead of referring to leffttree.Robert Haas
2015-05-01Allow FDWs and custom scan providers to replace joins with scans.Robert Haas
2015-04-30Create an infrastructure for parallel computation in PostgreSQL.Robert Haas
2015-04-26Fix various typos and grammar errors in comments.Andres Freund
2015-04-25Perform RLS WITH CHECK before constraints, etcStephen Frost
2015-04-24Add comments explaining how unique and exclusion constraints are enforced.Heikki Linnakangas
2015-04-24Move functions related to index maintenance to separate source file.Heikki Linnakangas
2015-03-24Fix ExecOpenScanRelation to take a lock on a ROW_MARK_COPY relation.Tom Lane
2015-03-22Allow foreign tables to participate in inheritance.Tom Lane
2015-03-12Ensure tableoid reads correctly in EvalPlanQual-manufactured tuples.Tom Lane
2015-03-01Use the typcache to cache constraints for domain types.Tom Lane
2015-02-22In array_agg(), don't create a new context for every group.Jeff Davis
2015-02-21Use FLEXIBLE_ARRAY_MEMBER for HeapTupleHeaderData.t_bits[].Tom Lane
2015-02-20Use FLEXIBLE_ARRAY_MEMBER in some more places.Tom Lane
2015-02-20Use FLEXIBLE_ARRAY_MEMBER in a bunch more places.Tom Lane
2015-02-16Rationalize the APIs of array element/slice access functions.Tom Lane
2015-02-16Fix null-pointer-deref crash while doing COPY IN with check constraints.Tom Lane
2015-02-04Fix reference-after-free when waiting for another xact due to constraint.Heikki Linnakangas
2015-01-28Fix column-privilege leak in error-message pathsStephen Frost
2015-01-19Use abbreviated keys for faster sorting of text datums.Robert Haas
2015-01-19Typo fix.Robert Haas
2015-01-15Fix use-of-already-freed-memory problem in EvalPlanQual processing.Tom Lane
2015-01-09Fix typo in execMain.cStephen Frost
2015-01-06Update copyright for 2015Bruce Momjian
2014-12-12Fix corner case where SELECT FOR UPDATE could return a row twice.Tom Lane
2014-11-28Add bms_next_member(), and use it where appropriate.Tom Lane
2014-11-27Rename pg_rowsecurity -> pg_policy and other fixesStephen Frost
2014-11-25Support arrays as input to array_agg() and ARRAY(SELECT ...).Tom Lane