summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* Fix mishandling of after-trigger state when a SQL function returns multipleTom Lane2006-10-121-3/+11
* Message style improvementsPeter Eisentraut2006-10-061-2/+2
* pgindent run for 8.2.Bruce Momjian2006-10-0422-279/+283
* Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane2006-09-281-25/+75
* Clean up logging for extended-query-protocol operations, as per my recentTom Lane2006-09-071-2/+1
* Change processing of extended-Query mode so that an unnamed statementTom Lane2006-09-062-2/+5
* Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian2006-09-031-6/+6
* Change FETCH/MOVE to use int8.Bruce Momjian2006-09-021-6/+6
* Now bind displays prepare as detail, and execute displays prepare andBruce Momjian2006-08-291-1/+2
* Add new return codes SPI_OK_INSERT_RETURNING etc to the SPI API.Tom Lane2006-08-271-5/+24
* Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: weTom Lane2006-08-141-38/+49
* When executing a list of queries derived from rule expansion,Tom Lane2006-08-141-7/+12
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-123-41/+40
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-122-205/+459
* For protocol-level prepare/bind/execute:Bruce Momjian2006-08-081-1/+2
* Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EStateTom Lane2006-08-041-3/+68
* Arrange for ValuesScan to keep per-sublist expression eval state in aTom Lane2006-08-021-70/+77
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-024-6/+372
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-313-62/+22
* Change the bootstrap sequence so that toast tables for system catalogs areTom Lane2006-07-311-3/+3
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-272-64/+121
* Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane2006-07-261-25/+4
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-261-6/+27
* 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