| Age | Commit message (Expand) | Author |
| 2008-04-06 | Improve hash_any() to use word-wide fetches when hashing suitably aligned | Tom Lane |
| 2008-04-05 | Defend against JOINs having more than 32K columns altogether. We cannot | Tom Lane |
| 2008-04-04 | Re-implement division for numeric values using the traditional "schoolbook" | Tom Lane |
| 2008-04-04 | Implement current_query(), that shows the currently executing query. | Bruce Momjian |
| 2008-04-04 | Convert backslash_quote guc to use enum. | Magnus Hagander |
| 2008-04-04 | Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary and | Magnus Hagander |
| 2008-04-03 | Remove heap_release_fetch, which is no longer used anywhere; this simplifies | Tom Lane |
| 2008-04-03 | Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerly | Tom Lane |
| 2008-04-02 | Convert three more guc settings to enum type: | Magnus Hagander |
| 2008-04-01 | Add SPI-level support for executing SQL commands with one-time-use plans, | Tom Lane |
| 2008-04-01 | Fix an oversight I made in a cleanup patch over a year ago: | Tom Lane |
| 2008-03-31 | Apply my original fix for Taiki Yamaguchi's bug report about DISTINCT MAX(). | Tom Lane |
| 2008-03-28 | Support statement-level ON TRUNCATE triggers. Simon Riggs | Tom Lane |
| 2008-03-27 | Reduce the need for frontend programs to include "postgres.h" by refactoring | Tom Lane |
| 2008-03-26 | Move the HTSU_Result enum definition into snapshot.h, to avoid including | Alvaro Herrera |
| 2008-03-26 | Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files. | Alvaro Herrera |
| 2008-03-26 | Separate snapshot management code from tuple visibility code, create a | Alvaro Herrera |
| 2008-03-25 | Simplify and standardize conversions between TEXT datums and ordinary C | Tom Lane |
| 2008-03-25 | Add a new tuplestore API function, tuplestore_putvalues(). This is | Neil Conway |
| 2008-03-24 | When a relation has been proven empty by constraint exclusion, propagate that | Tom Lane |
| 2008-03-24 | Use new errdetail_log() mechanism to provide a less klugy way of reporting | Tom Lane |
| 2008-03-24 | Adjust the recent patch for reporting of deadlocked queries so that we report | Tom Lane |
| 2008-03-24 | Add a new ereport auxiliary function errdetail_log(), which works the same as | Tom Lane |
| 2008-03-23 | Create a function quote_nullable(), which works the same as quote_literal() | Tom Lane |
| 2008-03-22 | Add server side lo_import(filename, oid) function. | Tatsuo Ishii |
| 2008-03-21 | Remove TypeName struct's timezone flag, which has been write-only storage | Tom Lane |
| 2008-03-21 | Report the current queries of all backends involved in a deadlock | Tom Lane |
| 2008-03-21 | Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventing | Tom Lane |
| 2008-03-20 | Arrange for an explicit cast applied to an ARRAY[] constructor to be applied | Tom Lane |
| 2008-03-19 | Support ALTER TYPE RENAME. Petr Jelinek | Tom Lane |
| 2008-03-18 | Arrange to "inline" SQL functions that appear in a query's FROM clause, | Tom Lane |
| 2008-03-17 | Enable probes to work with Mac OS X Leopard and other OSes that will | Peter Eisentraut |
| 2008-03-17 | Fix postgres --describe-config for guc enums, breakage noted by Alvaro. | Magnus Hagander |
| 2008-03-17 | Move ProcState definition into sinvaladt.c from sinvaladt.h, since it's not | Alvaro Herrera |
| 2008-03-17 | Fix TransactionIdIsCurrentTransactionId() to use binary search instead of | Tom Lane |
| 2008-03-16 | When creating a large hash index, pre-sort the index entries by estimated | Tom Lane |
| 2008-03-16 | Modify interactions between sinval.c and sinvaladt.c. The code that actually | Alvaro Herrera |
| 2008-03-16 | Some cleanups of enum-guc code, per comments from Tom. | Magnus Hagander |
| 2008-03-15 | Change hash index creation so that rather than always establishing exactly | Tom Lane |
| 2008-03-14 | Fix vacuum so that autovacuum is really not cancelled when doing an emergency | Alvaro Herrera |
| 2008-03-13 | Fix heap_page_prune's problem with failing to send cache invalidation | Tom Lane |
| 2008-03-11 | Make TransactionIdIsInProgress check transam.c's single-item XID status cache | Tom Lane |
| 2008-03-10 | Provide a build-time option to store large relations as single files, rather | Tom Lane |
| 2008-03-10 | Bump catversion from guc enum patch, which I forgot. Sorry! | Magnus Hagander |
| 2008-03-10 | Implement enum type for guc parameters, and convert a couple of existing | Magnus Hagander |
| 2008-03-10 | Reduce memory consumption during VACUUM of large relations, by using | Tom Lane |
| 2008-03-09 | Change patternsel() so that instead of switching from a pure | Tom Lane |
| 2008-03-08 | Refactor heap_page_prune so that instead of changing item states on-the-fly, | Tom Lane |
| 2008-03-07 | This patch addresses some issues in TOAST compression strategy that | Tom Lane |
| 2008-03-04 | Fix PREPARE TRANSACTION to reject the case where the transaction has dropped a | Tom Lane |