| Commit message (Expand) | Author | Age | Files | Lines |
| * | Backend support for autocommit removed, per recent discussions. The | Tom Lane | 2003-05-14 | 1 | -3/+3 |
| * | Add binary I/O routines for a bunch more datatypes. Still a few to go, | Tom Lane | 2003-05-12 | 1 | -7/+1 |
| * | Update 3.0 protocol support to match recent agreements about how to | Tom Lane | 2003-05-08 | 1 | -5/+6 |
| * | Restructure command destination handling so that we pass around | Tom Lane | 2003-05-06 | 1 | -5/+5 |
| * | Implement feature of new FE/BE protocol whereby RowDescription identifies | Tom Lane | 2003-05-06 | 1 | -4/+4 |
| * | Extended query protocol: parse, bind, execute, describe FE/BE messages. | Tom Lane | 2003-05-05 | 1 | -2/+4 |
| * | Add transaction status field to ReadyForQuery messages, and make room | Tom Lane | 2003-04-26 | 1 | -22/+33 |
| * | During VACUUM FULL, truncate off any deletable pages that are at the | Tom Lane | 2003-02-24 | 1 | -2/+3 |
| * | Adjust btbulkdelete logic so that only one WAL record is issued while | Tom Lane | 2003-02-23 | 1 | -5/+10 |
| * | Improve coding of log_heap_clean() and heap_xlog_clean(). | Tom Lane | 2003-02-23 | 1 | -2/+2 |
| * | First cut at recycling space in btree indexes. Still some rough edges | Tom Lane | 2003-02-23 | 2 | -5/+9 |
| * | More infrastructure for btree compaction project. Tree-traversal code | Tom Lane | 2003-02-22 | 3 | -19/+40 |
| * | Make btree index structure adjustments and WAL logging changes needed to | Tom Lane | 2003-02-21 | 2 | -119/+217 |
| * | This trivial patch removes the usage of some old statistics code that no | Bruce Momjian | 2003-02-13 | 1 | -8/+1 |
| * | Fix coredump problem in plpgsql's RETURN NEXT. When a SELECT INTO | Tom Lane | 2003-01-21 | 1 | -2/+4 |
| * | Read-only transactions, as defined in SQL. | Peter Eisentraut | 2003-01-10 | 1 | -1/+4 |
| * | Fix for bug #866. 7.3 contains new logic for avoiding redundant calls to | Tom Lane | 2003-01-08 | 1 | -1/+10 |
| * | Put back error test for DECLARE CURSOR outside a transaction block ... | Tom Lane | 2002-11-18 | 1 | -1/+2 |
| * | Add checkpoint_warning to warn of excessive checkpoints caused by too | Bruce Momjian | 2002-11-15 | 1 | -1/+2 |
| * | Update xact.c comments for clarity. | Bruce Momjian | 2002-11-13 | 1 | -7/+8 |
| * | Fix places that were using IsTransactionBlock() as an (inadequate) check | Tom Lane | 2002-10-21 | 1 | -1/+2 |
| * | Ensure that before truncating CLOG, we force a checkpoint even if no | Tom Lane | 2002-09-26 | 1 | -2/+2 |
| * | Fix problems with loss of tuple commit status bits during WAL redo of | Tom Lane | 2002-09-26 | 2 | -6/+17 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 10 | -55/+57 |
| * | Code review for HeapTupleHeader changes. Add version number to page headers | Tom Lane | 2002-09-02 | 2 | -164/+147 |
| * | AUTOCOMMIT mode is now an available backend GUC variable; setting it | Tom Lane | 2002-08-30 | 1 | -3/+3 |
| * | Complete TODO item: | Bruce Momjian | 2002-08-30 | 1 | -2/+1 |
| * | Clean up comments to be careful about the distinction between variable- | Tom Lane | 2002-08-25 | 2 | -7/+6 |
| * | The cstring datatype can now be copied, passed around, etc. The typlen | Tom Lane | 2002-08-24 | 1 | -9/+13 |
| * | Add a bunch of pseudo-types to replace the behavior formerly associated | Tom Lane | 2002-08-22 | 1 | -4/+1 |
| * | Reverse out XLogDir/-X write-ahead log handling, per discussion. | Bruce Momjian | 2002-08-17 | 1 | -5/+1 |
| * | Restructure local-buffer handling per recent pghackers discussion. | Tom Lane | 2002-08-06 | 1 | -1/+2 |
| * | Fix compilation problem with assert checking enabled for recent xlog | Thomas G. Lockhart | 2002-08-05 | 1 | -2/+2 |
| * | Implement WAL log location control using "-X" or PGXLOG. | Thomas G. Lockhart | 2002-08-04 | 1 | -1/+5 |
| * | oid is needed, it is added at the end of the struct (after the null | Bruce Momjian | 2002-07-20 | 3 | -8/+67 |
| * | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | 2002-07-12 | 1 | -2/+2 |
| * | Fix typo in xl_heaptid comment | Bruce Momjian | 2002-07-08 | 1 | -2/+2 |
| * | There already was a macro PageGetItemId; this is now used in (almost) | Bruce Momjian | 2002-07-02 | 1 | -2/+10 |
| * | This patch, which is built upon the "HeapTupleHeader accessor macros" | Bruce Momjian | 2002-07-02 | 1 | -27/+86 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 29 | -58/+58 |
| * | This patch wraps all accesses to t_xmin, t_cmin, t_xmax, and t_cmax in | Bruce Momjian | 2002-06-15 | 1 | -28/+83 |
| * | Distinguish between MaxHeapAttributeNumber and MaxTupleAttributeNumber, | Tom Lane | 2002-05-27 | 1 | -27/+43 |
| * | Remove AMI_OVERRIDE tests from tqual.c routines; they aren't necessary | Tom Lane | 2002-05-25 | 1 | -12/+8 |
| * | Mark index entries "killed" when they are no longer visible to any | Tom Lane | 2002-05-24 | 5 | -30/+27 |
| * | Remove global variable scanCommandId in favor of storing a command ID | Tom Lane | 2002-05-21 | 2 | -11/+14 |
| * | Restructure indexscan API (index_beginscan, index_getnext) per | Tom Lane | 2002-05-20 | 7 | -66/+74 |
| * | Merge the last few variable.c configuration variables into the generic | Tom Lane | 2002-05-17 | 1 | -3/+3 |
| * | Create a new GUC variable search_path to control the namespace search | Tom Lane | 2002-04-01 | 1 | -4/+2 |
| * | pg_type has a typnamespace column; system now supports creating types | Tom Lane | 2002-03-29 | 1 | -3/+3 |
| * | pg_class has a relnamespace column. You can create and access tables | Tom Lane | 2002-03-26 | 2 | -5/+10 |