| Commit message (Expand) | Author | Age | Files | Lines |
| * | Allow Borland CC to compile libpq and psql. | Bruce Momjian | 2007-01-11 | 1 | -3/+32 |
| * | Allow initdb to specify the pg_xlog directory. | Bruce Momjian | 2007-01-06 | 1 | -7/+114 |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 65 | -130/+130 |
| * | Call setrlimit if possible in pg_regress to allow core file generation, and p... | Andrew Dunstan | 2007-01-05 | 1 | -3/+47 |
| * | Tweak pg_dumpall to add GRANT CONNECT ON DATABASE ... TO PUBLIC when dumping | Tom Lane | 2007-01-04 | 1 | -1/+15 |
| * | Support type modifiers for user-defined types, and pull most knowledge | Tom Lane | 2006-12-30 | 1 | -3/+45 |
| * | fflush the \o file, if any, after each backslash command. We already | Tom Lane | 2006-12-28 | 1 | -3/+6 |
| * | Print combining characters (those reported as having zero width by | Tom Lane | 2006-12-27 | 1 | -20/+15 |
| * | Make HISTCONTROL=ignoredups work again (broken by misordering of | Tom Lane | 2006-12-24 | 1 | -7/+7 |
| * | Restructure operator classes to allow improved handling of cross-data-type | Tom Lane | 2006-12-23 | 2 | -64/+109 |
| * | fix thinko in placement of TimeValStruct typedef in Windows case, as reported... | Andrew Dunstan | 2006-12-18 | 1 | -3/+3 |
| * | enable \timing oputput for \copy commands | Andrew Dunstan | 2006-12-16 | 3 | -28/+47 |
| * | Remove the logId/logSeg fields from pg_control, because they are not needed | Tom Lane | 2006-12-08 | 2 | -34/+113 |
| * | Fix pg_dump linking on Win32 with MSVS win32.mak: | Bruce Momjian | 2006-12-04 | 1 | -1/+8 |
| * | Translation updates | Peter Eisentraut | 2006-12-02 | 7 | -1662/+1983 |
| * | Fix psql's \copy command to ensure that it cycles libpq back to the idle state | Tom Lane | 2006-11-24 | 1 | -1/+13 |
| * | Translation updates | Peter Eisentraut | 2006-11-24 | 25 | -4928/+5839 |
| * | Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF in | Tom Lane | 2006-11-21 | 4 | -4/+4 |
| * | Suppress timezone (%Z) part of timestamp display when running on Windows, | Tom Lane | 2006-11-21 | 2 | -4/+28 |
| * | Fix a memory leak in psql: we'd leak a few PGresult handles if | Neil Conway | 2006-11-08 | 1 | -1/+8 |
| * | pg_restore failed on tar-format archives if they contained large objects | Tom Lane | 2006-11-01 | 1 | -3/+16 |
| * | Translations update | Peter Eisentraut | 2006-10-21 | 40 | -9269/+12714 |
| * | Code review for --no-data-for-failed-tables patch. Instead of trashing | Tom Lane | 2006-10-14 | 3 | -23/+45 |
| * | Remove somebody's ill-considered free() call, per report from Chander Ganesan. | Tom Lane | 2006-10-12 | 1 | -2/+1 |
| * | MSVC/BCC Win32 compiler fixes. | Bruce Momjian | 2006-10-10 | 3 | -1/+26 |
| * | Revise psql pattern-matching switches as per discussion. The rule is now | Tom Lane | 2006-10-09 | 3 | -263/+367 |
| * | Move processNamePattern into dumputils.c in preparation for using it in | Tom Lane | 2006-10-09 | 3 | -263/+268 |
| * | Fix ancient oversight in psql's \d pattern processing code: when seeing two | Tom Lane | 2006-10-07 | 1 | -10/+13 |
| * | The -X option in pg_dump was supposed to be a workaround for the lack of | Peter Eisentraut | 2006-10-07 | 3 | -39/+28 |
| * | Message style improvements | Peter Eisentraut | 2006-10-06 | 5 | -18/+20 |
| * | Fix initdb's logic for picking shared_buffers/max_fsm_pages, which had | Tom Lane | 2006-10-04 | 1 | -18/+15 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 32 | -896/+975 |
| * | pgevent fixes: | Bruce Momjian | 2006-10-03 | 1 | -2/+2 |
| * | Fix yesno_prompt() memory leak in /script tools, reported by Converity. | Bruce Momjian | 2006-10-03 | 1 | -4/+12 |
| * | The attached patch changes units of the some default values in | Bruce Momjian | 2006-10-03 | 1 | -8/+18 |
| * | Fix some misuses of strncat(). | Tom Lane | 2006-09-27 | 1 | -2/+2 |
| * | Remove separate strdup.h header file; it's redundant with port.h. | Tom Lane | 2006-09-27 | 6 | -27/+6 |
| * | Suppress useless warning on pre-XP versions of Windows. Magnus | Tom Lane | 2006-09-24 | 1 | -2/+10 |
| * | Fix bugs in plpgsql and ecpg caused by assuming that isspace() would only | Tom Lane | 2006-09-22 | 2 | -6/+6 |
| * | Surely this temp buffer needn't be static. | Tom Lane | 2006-09-22 | 1 | -4/+6 |
| * | Rearrange yes/no prompting code so that the prompts always show the | Peter Eisentraut | 2006-09-22 | 6 | -38/+34 |
| * | Make postgresql.conf.sample match the initdb defaults. This fixes | Bruce Momjian | 2006-09-14 | 1 | -3/+3 |
| * | Fix pg_dump for recent change removing separate RULE privilege. | Tom Lane | 2006-09-08 | 1 | -2/+1 |
| * | Revert as not needed/inconsistent with SQL REINDEX: | Bruce Momjian | 2006-09-02 | 1 | -8/+1 |
| * | Suppress some NOTICE messages from REINDEX command. | Bruce Momjian | 2006-09-02 | 1 | -1/+8 |
| * | Extend COPY to support COPY (SELECT ...) TO ... | Tom Lane | 2006-08-30 | 1 | -1/+24 |
| * | Dept. of second thoughts: if query fails part way through, shut down | Tom Lane | 2006-08-29 | 1 | -4/+13 |
| * | Create a FETCH_COUNT parameter that causes psql to execute SELECT-like | Tom Lane | 2006-08-29 | 5 | -483/+831 |
| * | Invent an assign-hook mechanism for psql variables similar to the one | Tom Lane | 2006-08-29 | 12 | -266/+407 |
| * | Make saveHistory work properly on OS X when HISTFILE is set to /dev/null. | Tom Lane | 2006-08-27 | 1 | -2/+9 |