| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix Intel compiler bug. Per discussion | Teodor Sigaev | 2006-09-05 | 1 | -2/+17 |
| * | Arrange for GetSnapshotData to copy live-subtransaction XIDs from the | Tom Lane | 2006-09-03 | 1 | -6/+17 |
| * | Fix BUG #2594: Gin Indexes cause server to crash when it builds on empty table | Teodor Sigaev | 2006-08-29 | 1 | -1/+4 |
| * | Move xact.c's partial support for Lists of TransactionIds into pg_list.h. | Tom Lane | 2006-08-27 | 1 | -9/+1 |
| * | Add the ability to create indexes 'concurrently', that is, without | Tom Lane | 2006-08-25 | 1 | -2/+27 |
| * | Optimize the case where a btree indexscan has current and mark positions | Tom Lane | 2006-08-24 | 2 | -25/+57 |
| * | Make the server track an 'XID epoch', that is, maintain higher-order bits | Tom Lane | 2006-08-21 | 1 | -10/+84 |
| * | Now that we've rearranged relation open to get a lock before touching | Tom Lane | 2006-08-18 | 1 | -25/+63 |
| * | Implement archive_timeout feature to force xlog file switches to occur no more | Tom Lane | 2006-08-17 | 1 | -14/+107 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 1 | -4/+4 |
| * | Make recovery from WAL be restartable, by executing a checkpoint-like | Tom Lane | 2006-08-07 | 5 | -77/+194 |
| * | Add support for forcing a switch to a new xlog file; cause such a switch | Tom Lane | 2006-08-06 | 1 | -48/+393 |
| * | Add missing pgstat_count_index_scan(), per Andreas Seltenreich. | Tom Lane | 2006-08-03 | 1 | -1/+4 |
| * | Change the relation_open protocol so that we obtain lock on a relation | Tom Lane | 2006-07-31 | 6 | -143/+103 |
| * | Modify snapshot definition so that lazy vacuums are ignored by other | Alvaro Herrera | 2006-07-30 | 3 | -4/+8 |
| * | Modify btree to delete known-dead index entries without an actual VACUUM. | Tom Lane | 2006-07-25 | 5 | -15/+141 |
| * | DTrace support, with a small initial set of probes | Peter Eisentraut | 2006-07-24 | 1 | -1/+7 |
| * | Don't try to truncate multixact SLRU files in checkpoints done during xlog | Tom Lane | 2006-07-20 | 1 | -3/+8 |
| * | Fix getDatumCopy(): don't use store_att_byval to copy into a Datum | Tom Lane | 2006-07-16 | 1 | -25/+22 |
| * | Improve error message wording. | Tom Lane | 2006-07-16 | 1 | -2/+2 |
| * | Fix misguided removal of access/tuptoaster.h inclusion, per Kris Jurka. | Tom Lane | 2006-07-14 | 1 | -1/+2 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 36 | -138/+40 |
| * | Allow include files to compile own their own. | Bruce Momjian | 2006-07-13 | 12 | -14/+27 |
| * | Tweak fillfactor code as per my recent proposal. Fix nbtsort.c so that | Tom Lane | 2006-07-11 | 3 | -16/+25 |
| * | Add support to GIN for =(anyarray,anyarray) operation | Teodor Sigaev | 2006-07-11 | 1 | -1/+3 |
| * | Alphabetically order reference to include files, "S"-"Z". | Bruce Momjian | 2006-07-11 | 1 | -3/+3 |
| * | Alphabetically order reference to include files, "N" - "S". | Bruce Momjian | 2006-07-11 | 1 | -2/+2 |
| * | Alphabetically order reference to include files, "G" - "M". | Bruce Momjian | 2006-07-11 | 6 | -12/+12 |
| * | GIN improvements | Teodor Sigaev | 2006-07-11 | 2 | -65/+207 |
| * | Improve vacuum code to track minimum Xids per table instead of per database. | Alvaro Herrera | 2006-07-10 | 1 | -9/+9 |
| * | Code review for FILLFACTOR patch. Change WITH grammar as per earlier | Tom Lane | 2006-07-03 | 15 | -271/+453 |
| * | Add FILLFACTOR to CREATE INDEX. | Bruce Momjian | 2006-07-02 | 15 | -42/+283 |
| * | Forget to add new file :(( | Teodor Sigaev | 2006-06-28 | 1 | -0/+538 |
| * | Changes | Teodor Sigaev | 2006-06-28 | 5 | -564/+185 |
| * | Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrect | Tom Lane | 2006-06-27 | 1 | -2/+14 |
| * | Extend the MinimalTuple concept to tuplesort.c, thereby reducing the | Tom Lane | 2006-06-27 | 1 | -2/+2 |
| * | Create infrastructure for 'MinimalTuple' representation of in-memory | Tom Lane | 2006-06-27 | 1 | -4/+174 |
| * | pg_stop_backup was calling XLogArchiveNotify() twice for the newly created | Tom Lane | 2006-06-22 | 1 | -33/+28 |
| * | Remove redundant gettimeofday() calls to the extent practical without | Tom Lane | 2006-06-20 | 1 | -5/+8 |
| * | Don't try to call posix_fadvise() unless <fcntl.h> supplies a declaration | Tom Lane | 2006-06-18 | 1 | -5/+7 |
| * | Fix problems with cached tuple descriptors disappearing while still in use | Tom Lane | 2006-06-16 | 2 | -2/+51 |
| * | Test for POSIX_FADV_DONTNEED to use posix_fadvise(). | Bruce Momjian | 2006-06-16 | 1 | -2/+2 |
| * | Use posix_fadvise() to avoid kernel caching of WAL contents on WAL file | Bruce Momjian | 2006-06-15 | 1 | -25/+33 |
| * | Som improve page split in multicolumn GiST index. | Teodor Sigaev | 2006-05-29 | 2 | -40/+55 |
| * | Correct cheking in findParents(). i | Teodor Sigaev | 2006-05-29 | 1 | -2/+2 |
| * | Remove traces of otherwise unused RELKIND_SPECIAL symbol. Leave the psql bits | Alvaro Herrera | 2006-05-28 | 1 | -13/+3 |
| * | Fix findParents() in case of multiple levels to find. | Teodor Sigaev | 2006-05-26 | 1 | -2/+3 |
| * | * Add support NULL to GiST. | Teodor Sigaev | 2006-05-24 | 3 | -395/+356 |
| * | Call MarkBufferDirty() before XLogInsert() during completion of insert | Teodor Sigaev | 2006-05-19 | 1 | -4/+6 |
| * | Simplify gistSplit() and some refactoring related code. | Teodor Sigaev | 2006-05-19 | 3 | -200/+152 |