| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove hard-wired lists of timezone abbreviations in favor of providing | Tom Lane | 2006-07-25 | 36 | -433/+2795 |
| * | Use correct ifdef test for cygwin, namely __CYGWIN__ (note underscores). | Andrew Dunstan | 2006-07-25 | 1 | -3/+3 |
| * | Make the order of operations in PostmasterMain a bit saner ... some | Tom Lane | 2006-07-25 | 1 | -12/+13 |
| * | DTrace support, with a small initial set of probes | Peter Eisentraut | 2006-07-24 | 9 | -8/+124 |
| * | Mark postgresql.conf entries that require server restart; some minor | Peter Eisentraut | 2006-07-24 | 1 | -36/+54 |
| * | Remove dubious and redundant (we think) setting of libdir in PATH for non tem... | Andrew Dunstan | 2006-07-24 | 1 | -10/+1 |
| * | Add a fudge factor to genericcostestimate() to prevent the planner from | Tom Lane | 2006-07-24 | 1 | -1/+19 |
| * | Convert the lock manager to use the new dynahash.c support for partitioned | Tom Lane | 2006-07-23 | 7 | -236/+307 |
| * | Fix oversight in sizing of shared buffer lookup hashtable. Because | Tom Lane | 2006-07-23 | 1 | -4/+11 |
| * | Split the buffer mapping table into multiple separately lockable | Tom Lane | 2006-07-23 | 7 | -65/+185 |
| * | Add support to dynahash.c for partitioning shared hashtables according | Tom Lane | 2006-07-22 | 4 | -180/+387 |
| * | Hmm, seems --disable-spinlocks has been broken for awhile and nobody | Tom Lane | 2006-07-22 | 1 | -3/+5 |
| * | In the recent changes to make the planner account better for cache | Tom Lane | 2006-07-22 | 5 | -32/+62 |
| * | Add libdir to PATH for Cygwin as well as WIN32 - should fix buildfarm eel. | Andrew Dunstan | 2006-07-22 | 1 | -3/+3 |
| * | For automatic dependency tracking, replace our sed hackery with the GCC- | Peter Eisentraut | 2006-07-21 | 1 | -27/+5 |
| * | Add the full set of comparison functions for type TID, including a btree | Tom Lane | 2006-07-21 | 9 | -51/+167 |
| * | Ah, I finally realize why Magnus wanted to add a --bindir option to | Tom Lane | 2006-07-21 | 6 | -24/+55 |
| * | As a stopgap to get the Windows buildfarm members running again, hot-wire | Tom Lane | 2006-07-20 | 1 | -31/+40 |
| * | Make pg_config location overridable for pgxs builds. | Peter Eisentraut | 2006-07-20 | 1 | -11/+13 |
| * | Print out diff status code when we think there's a hard failure. | Tom Lane | 2006-07-20 | 1 | -4/+9 |
| * | Suppress unused-variable compiler warning, per Andrew Dunstan. | Tom Lane | 2006-07-20 | 1 | -1/+3 |
| * | Fix pg_regress.c to report tests in a parallel group when they finish, | Tom Lane | 2006-07-20 | 1 | -27/+48 |
| * | Make pg_regress.c get paths from pg_config_paths.h, instead of -D | Tom Lane | 2006-07-20 | 2 | -12/+15 |
| * | Don't try to truncate multixact SLRU files in checkpoints done during xlog | Tom Lane | 2006-07-20 | 1 | -3/+8 |
| * | Adjust spawn_process() to avoid unnecessary overhead processes: we can | Tom Lane | 2006-07-19 | 2 | -18/+24 |
| * | Update WIN32 quoting roles documentation. | Bruce Momjian | 2006-07-19 | 1 | -3/+19 |
| * | Adjust pg_regress to print out the exact string given to system() when | Tom Lane | 2006-07-19 | 1 | -7/+6 |
| * | Add WIN32 compile suggestion to pginclude README. | Bruce Momjian | 2006-07-19 | 1 | -2/+1 |
| * | kill() is declared in <signal.h> per Single Unix Spec. | Tom Lane | 2006-07-19 | 1 | -1/+2 |
| * | Tweak command quoting for Windows (I'd forgotten about SYSTEMQUOTE). | Tom Lane | 2006-07-19 | 1 | -12/+12 |
| * | Remove unnecessary inclusion of libpq into pg_regress --- overly | Tom Lane | 2006-07-19 | 1 | -2/+2 |
| * | Rewrite pg_regress as a C program instead of a shell script. | Tom Lane | 2006-07-19 | 8 | -814/+1639 |
| * | copydir() and rmtree() need to use lstat, not stat, to behave as expected | Tom Lane | 2006-07-18 | 2 | -4/+4 |
| * | The Win32 DEF files that are generated for libpq contain the attribute | Bruce Momjian | 2006-07-18 | 1 | -4/+1 |
| * | Add pginclude testing ideas. | Bruce Momjian | 2006-07-18 | 1 | -0/+3 |
| * | Mark a few functions as static or NOT_USED. | Bruce Momjian | 2006-07-18 | 9 | -21/+22 |
| * | Make pg_regress a tad simpler and more general-purpose by removing its | Tom Lane | 2006-07-18 | 3 | -13/+29 |
| * | Mention dependency problems caused by pgrminclude on include files. | Bruce Momjian | 2006-07-17 | 1 | -5/+15 |
| * | Improve psql's \df slash command to include the argument names and modes | Neil Conway | 2006-07-17 | 1 | -3/+30 |
| * | Include libpq/pqcomm.h to ensure we have correct knowledge of | Tom Lane | 2006-07-16 | 1 | -2/+3 |
| * | In a Windows backend, don't build src/port/pgsleep.c's version of | Tom Lane | 2006-07-16 | 4 | -16/+24 |
| * | Ensure that we retry rather than erroring out when send() or recv() return | Tom Lane | 2006-07-16 | 2 | -7/+33 |
| * | Fix a few places where $Id$ and $Header$ CVS tags had crept into the | Tom Lane | 2006-07-16 | 5 | -5/+5 |
| * | Fix lack of repeat-inclusion guard in win32 substitute sys/socket.h. | Tom Lane | 2006-07-16 | 1 | -1/+9 |
| * | Put back another not-so-unnecessary #include, per report from Hiroshi Saito. | Tom Lane | 2006-07-16 | 1 | -1/+2 |
| * | 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 |
| * | Put back some more not-so-unused-as-all-that #includes. This un-breaks | Tom Lane | 2006-07-15 | 2 | -2/+6 |
| * | Fix some missing inclusions identified with new pgcheckdefines tool. | Tom Lane | 2006-07-15 | 6 | -15/+20 |
| * | Fix some makefiles that fail to yield good results from 'make -qp'. | Tom Lane | 2006-07-15 | 4 | -5/+12 |