| Commit message (Expand) | Author | Age | Files | Lines |
| * | The original patch to avoid building a hash join's hashtable when the | Tom Lane | 2005-09-25 | 1 | -2/+3 |
| * | Add NOWAIT option to SELECT FOR UPDATE/SHARE. | Tom Lane | 2005-08-01 | 1 | -3/+4 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 1 | -1/+12 |
| * | Avoid WAL-logging individual tuple insertions during CREATE TABLE AS | Tom Lane | 2005-06-20 | 1 | -1/+3 |
| * | Change the implementation of hash join to attempt to avoid unnecessary | Neil Conway | 2005-06-15 | 1 | -1/+2 |
| * | Minor refactoring to eliminate duplicate code and make startup a | Tom Lane | 2005-05-14 | 1 | -1/+5 |
| * | Revise nodeMergejoin in light of example provided by Guillaume Smet. | Tom Lane | 2005-05-13 | 1 | -10/+16 |
| * | Adjust nodeBitmapIndexscan to keep the target index opened from plan | Tom Lane | 2005-05-05 | 1 | -1/+5 |
| * | Implement sharable row-level locks, and use them for foreign key references | Tom Lane | 2005-04-28 | 1 | -1/+2 |
| * | Remove support for OR'd indexscans internal to a single IndexScan plan | Tom Lane | 2005-04-25 | 1 | -25/+13 |
| * | Adjust nodeBitmapIndexscan.c to not keep the index open across calls, | Tom Lane | 2005-04-24 | 1 | -5/+1 |
| * | Minor performance improvement: avoid unnecessary creation/unioning of | Tom Lane | 2005-04-20 | 1 | -1/+3 |
| * | Create executor and planner-backend support for decoupled heap and index | Tom Lane | 2005-04-19 | 1 | -1/+71 |
| * | Improve EXPLAIN ANALYZE to show the time spent in each trigger when | Tom Lane | 2005-03-25 | 1 | -1/+3 |
| * | Revise TupleTableSlot code to avoid unnecessary construction and disassembly | Tom Lane | 2005-03-16 | 1 | -17/+28 |
| * | Revise hash join code so that we can increase the number of batches | Tom Lane | 2005-03-06 | 1 | -6/+11 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | Instead of supposing (wrongly, in the general case) that the rowtype | Tom Lane | 2004-12-11 | 1 | -1/+18 |
| * | Fix problems with SQL functions returning rowtypes that have dropped | Tom Lane | 2004-10-07 | 1 | -12/+3 |
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -9/+10 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Support assignment to subfields of composite columns in UPDATE and INSERT. | Tom Lane | 2004-06-09 | 1 | -1/+13 |
| * | Promote row expressions to full-fledged citizens of the expression syntax, | Tom Lane | 2004-05-10 | 1 | -1/+12 |
| * | Replace TupleTableSlot convention for whole-row variables and function | Tom Lane | 2004-04-01 | 1 | -1/+12 |
| * | Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... END | Tom Lane | 2004-03-17 | 1 | -1/+6 |
| * | Replace the switching function ExecEvalExpr() with a macro that jumps | Tom Lane | 2004-03-17 | 1 | -3/+15 |
| * | Remove unneeded indxqual field in IndexScanState, and the useless work | Tom Lane | 2004-02-28 | 1 | -2/+3 |
| * | Fix oversight in optimization that avoids an unnecessary projection step | Tom Lane | 2004-01-22 | 1 | -4/+3 |
| * | Instead of rechecking lossy index operators by putting them into the | Tom Lane | 2004-01-06 | 1 | -1/+3 |
| * | Use a shutdown callback to clear setArgsValid in a FuncExprState that is | Tom Lane | 2003-12-18 | 1 | -1/+8 |
| * | make sure the $Id tags are converted to $PostgreSQL as well ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Repair RI trigger visibility problems (this time for sure ;-)) per recent | Tom Lane | 2003-10-01 | 1 | -2/+2 |
| * | Get rid of ReferentialIntegritySnapshotOverride by extending Executor API | Tom Lane | 2003-09-25 | 1 | -1/+2 |
| * | Tweak processing of multiple-index-scan plans to reduce overhead when | Tom Lane | 2003-08-22 | 1 | -1/+5 |
| * | Improve dynahash.c's API so that caller can specify the comparison function | Tom Lane | 2003-08-19 | 1 | -14/+11 |
| * | Another pgindent run with updated typedefs. | Bruce Momjian | 2003-08-08 | 1 | -22/+22 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -74/+77 |
| * | Support expressions of the form 'scalar op ANY (array)' and | Tom Lane | 2003-06-29 | 1 | -1/+17 |
| * | Revise hash join and hash aggregation code to use the same datatype- | Tom Lane | 2003-06-22 | 1 | -1/+6 |
| * | Replace functional-index facility with expressional indexes. Any column | Tom Lane | 2003-05-28 | 1 | -10/+7 |
| * | First phase of work on array improvements. ARRAY[x,y,z] constructor | Tom Lane | 2003-04-08 | 1 | -1/+25 |
| * | Revise tuplestore and nodeMaterial so that we don't have to read the | Tom Lane | 2003-03-09 | 1 | -4/+3 |
| * | COALESCE() and NULLIF() are now first-class expressions, not macros | Tom Lane | 2003-02-16 | 1 | -3/+14 |
| * | Make further use of new bitmapset code: executor's chgParam, extParam, | Tom Lane | 2003-02-09 | 1 | -2/+3 |
| * | Determine the set of constraints applied to a domain at executor | Tom Lane | 2003-02-03 | 1 | -6/+28 |
| * | Change CREATE TABLE AS / SELECT INTO to create the new table with OIDs, | Tom Lane | 2003-01-23 | 1 | -1/+3 |
| * | First cut at implementing IN (and NOT IN) via hashtables. There is | Tom Lane | 2003-01-12 | 1 | -9/+24 |
| * | Create a new file executor/execGrouping.c to centralize utility routines | Tom Lane | 2003-01-10 | 1 | -11/+45 |
| * | Further tweaking of parsetree & plantree representation of SubLinks. | Tom Lane | 2003-01-10 | 1 | -3/+9 |