| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix mishandling of after-trigger state when a SQL function returns multiple | Tom Lane | 2006-10-12 | 1 | -3/+11 |
| * | Message style improvements | Peter Eisentraut | 2006-10-06 | 1 | -2/+2 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 22 | -279/+283 |
| * | Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform to | Tom Lane | 2006-09-28 | 1 | -25/+75 |
| * | Clean up logging for extended-query-protocol operations, as per my recent | Tom Lane | 2006-09-07 | 1 | -2/+1 |
| * | Change processing of extended-Query mode so that an unnamed statement | Tom Lane | 2006-09-06 | 2 | -2/+5 |
| * | Revert FETCH/MOVE int64 patch. Was using incorrect checks for | Bruce Momjian | 2006-09-03 | 1 | -6/+6 |
| * | Change FETCH/MOVE to use int8. | Bruce Momjian | 2006-09-02 | 1 | -6/+6 |
| * | Now bind displays prepare as detail, and execute displays prepare and | Bruce Momjian | 2006-08-29 | 1 | -1/+2 |
| * | Add new return codes SPI_OK_INSERT_RETURNING etc to the SPI API. | Tom Lane | 2006-08-27 | 1 | -5/+24 |
| * | Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: we | Tom Lane | 2006-08-14 | 1 | -38/+49 |
| * | When executing a list of queries derived from rule expansion, | Tom Lane | 2006-08-14 | 1 | -7/+12 |
| * | Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this was | Tom Lane | 2006-08-12 | 3 | -41/+40 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 2 | -205/+459 |
| * | For protocol-level prepare/bind/execute: | Bruce Momjian | 2006-08-08 | 1 | -1/+2 |
| * | Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EState | Tom Lane | 2006-08-04 | 1 | -3/+68 |
| * | Arrange for ValuesScan to keep per-sublist expression eval state in a | Tom Lane | 2006-08-02 | 1 | -70/+77 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 4 | -6/+372 |
| * | Change the relation_open protocol so that we obtain lock on a relation | Tom Lane | 2006-07-31 | 3 | -62/+22 |
| * | Change the bootstrap sequence so that toast tables for system catalogs are | Tom Lane | 2006-07-31 | 1 | -3/+3 |
| * | Aggregate functions now support multiple input arguments. I also took | Tom Lane | 2006-07-27 | 2 | -64/+121 |
| * | Code review for bigint-LIMIT patch. Fix missed planner dependency, | Tom Lane | 2006-07-26 | 1 | -25/+4 |
| * | Change LIMIT/OFFSET to use int8 | Bruce Momjian | 2006-07-26 | 1 | -6/+27 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 24 | -74/+24 |
| * | Fix a passel of recently-committed violations of the rule 'thou shalt | Tom Lane | 2006-07-14 | 1 | -3/+3 |
| * | Add additional includes needed on some platforms. | Bruce Momjian | 2006-07-14 | 1 | -1/+2 |
| * | Move math.h after postgresql.h | Bruce Momjian | 2006-07-13 | 1 | -3/+3 |
| * | Allow include files to compile own their own. | Bruce Momjian | 2006-07-13 | 5 | -5/+14 |
| * | Sort reference of include files, "A" - "F". | Bruce Momjian | 2006-07-11 | 3 | -6/+6 |
| * | Code review for FILLFACTOR patch. Change WITH grammar as per earlier | Tom Lane | 2006-07-03 | 1 | -9/+14 |
| * | Add FILLFACTOR to CREATE INDEX. | Bruce Momjian | 2006-07-02 | 1 | -2/+8 |
| * | Fix hash aggregation to suppress unneeded columns from being stored in | Tom Lane | 2006-06-28 | 1 | -8/+110 |
| * | Adjust TupleHashTables to use MinimalTuple format for contained tuples. | Tom Lane | 2006-06-28 | 3 | -22/+20 |
| * | Convert hash join code to use MinimalTuple format in tuple hash table | Tom Lane | 2006-06-27 | 3 | -64/+107 |
| * | Extend the MinimalTuple concept to tuplesort.c, thereby reducing the | Tom Lane | 2006-06-27 | 1 | -13/+6 |
| * | Create infrastructure for 'MinimalTuple' representation of in-memory | Tom Lane | 2006-06-27 | 4 | -48/+154 |
| * | Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involving | Tom Lane | 2006-06-21 | 1 | -25/+5 |
| * | Fix problems with cached tuple descriptors disappearing while still in use | Tom Lane | 2006-06-16 | 14 | -154/+207 |
| * | Revert sampling patch for EXPLAIN ANALYZE; it turns out to be too unreliable | Tom Lane | 2006-06-09 | 2 | -174/+29 |
| * | Per previous analysis, the most correct notion of SampleOverhead is that | Tom Lane | 2006-06-07 | 1 | -16/+20 |
| * | Code review for EXPLAIN patch. Fix some typos, make it behave sanely | Tom Lane | 2006-05-30 | 1 | -70/+108 |
| * | Make EXPLAIN sampling smarter, to avoid excessive sampling delay. | Bruce Momjian | 2006-05-30 | 6 | -49/+140 |
| * | Remove CXT_printf/CXT1_printf macros. If anyone had found them to be of | Tom Lane | 2006-05-23 | 7 | -21/+7 |
| * | Improve the representation of FOR UPDATE/FOR SHARE so that we can | Tom Lane | 2006-04-30 | 2 | -28/+19 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 3 | -45/+56 |
| * | Modify all callers of datatype input and receive functions so that if these | Tom Lane | 2006-04-04 | 3 | -27/+15 |
| * | Fix bug introduced into mergejoin logic by performance improvement patch of | Tom Lane | 2006-03-17 | 1 | -29/+50 |
| * | Clean up representation of function RTEs for functions returning RECORD. | Tom Lane | 2006-03-16 | 1 | -2/+4 |
| * | Improve parser so that we can show an error cursor position for errors | Tom Lane | 2006-03-14 | 1 | -2/+2 |
| * | Add a CHECK_FOR_INTERRUPTS() to the loop in ExecMakeTableFunctionResult. | Tom Lane | 2006-03-10 | 1 | -1/+3 |