summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-1424-74/+24
* Fix a passel of recently-committed violations of the rule 'thou shaltTom Lane2006-07-141-3/+3
* Add additional includes needed on some platforms.Bruce Momjian2006-07-141-1/+2
* Move math.h after postgresql.hBruce Momjian2006-07-131-3/+3
* Allow include files to compile own their own.Bruce Momjian2006-07-135-5/+14
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-113-6/+6
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-9/+14
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-2/+8
* Fix hash aggregation to suppress unneeded columns from being stored inTom Lane2006-06-281-8/+110
* Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane2006-06-283-22/+20
* Convert hash join code to use MinimalTuple format in tuple hash tableTom Lane2006-06-273-64/+107
* Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane2006-06-271-13/+6
* Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane2006-06-274-48/+154
* Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involvingTom Lane2006-06-211-25/+5
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-1614-154/+207
* Revert sampling patch for EXPLAIN ANALYZE; it turns out to be too unreliableTom Lane2006-06-092-174/+29
* Per previous analysis, the most correct notion of SampleOverhead is thatTom Lane2006-06-071-16/+20
* Code review for EXPLAIN patch. Fix some typos, make it behave sanelyTom Lane2006-05-301-70/+108
* Make EXPLAIN sampling smarter, to avoid excessive sampling delay.Bruce Momjian2006-05-306-49/+140
* Remove CXT_printf/CXT1_printf macros. If anyone had found them to be ofTom Lane2006-05-237-21/+7
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-302-28/+19
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-223-45/+56
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-043-27/+15
* Fix bug introduced into mergejoin logic by performance improvement patch ofTom Lane2006-03-171-29/+50
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-161-2/+4
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-2/+2
* Add a CHECK_FOR_INTERRUPTS() to the loop in ExecMakeTableFunctionResult.Tom Lane2006-03-101-1/+3
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0536-72/+72
* Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane2006-02-282-29/+76
* Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane2006-02-2827-118/+230
* Improve sorting speed by pre-extracting the first sort-key column ofTom Lane2006-02-261-1/+4
* Cleanup the usage of ScanDirection: use the symbolic names for theNeil Conway2006-02-211-2/+2
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-3/+44
* Improve my initial, rather hacky implementation of joins to appendTom Lane2006-02-051-4/+6
* Allow row comparisons to be used as indexscan qualifications.Tom Lane2006-01-252-34/+192
* Add a new system view, pg_cursors, that displays the currently availableNeil Conway2006-01-181-3/+3
* Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane2006-01-141-4/+2
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-121-5/+27
* Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway2006-01-111-4/+4
* Add comment explaining why RelationOpenSmgr() call is not needed.Tom Lane2006-01-071-1/+2
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-282-80/+194
* Fix problem with whole-row Vars referencing sub-select outputs, perTom Lane2005-12-141-2/+2
* Fix a couple of lingering references to POSTQUEL query syntax, per Simon.Tom Lane2005-12-072-6/+6
* Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane2005-12-033-7/+42
* Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane2005-12-027-90/+121
* Rearrange code in ExecInitBitmapHeapScan so that we don't initialize theTom Lane2005-12-021-6/+10
* Tweak hash join code to use an additional heuristic for deciding whetherTom Lane2005-11-281-4/+39
* Recent changes to allow hash join to exit early given empty input fromTom Lane2005-11-281-30/+20
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-261-60/+163
* Change seqscan logic so that we check visibility of all tuples on a pageTom Lane2005-11-261-86/+161