| Commit message (Expand) | Author | Age | Files | Lines |
| * | Divide the lock manager's shared state into 'partitions', so as to | Tom Lane | 2005-12-11 | 10 | -399/+627 |
| * | Implement IS NOT DISTINCT FROM, update the regression tests and docs. | Neil Conway | 2005-12-11 | 3 | -1/+44 |
| * | Teach deparsing of CASE expressions to cope with the simplified forms | Tom Lane | 2005-12-10 | 1 | -7/+32 |
| * | Allow installation into directories containing spaces in the name. | Peter Eisentraut | 2005-12-09 | 46 | -237/+246 |
| * | Fix core dump in error path of plpgsql_parse_tripwordtype. Somebody | Tom Lane | 2005-12-09 | 1 | -10/+10 |
| * | Let initdb detect the date order of the lc_time locale and initialize the | Peter Eisentraut | 2005-12-09 | 1 | -1/+72 |
| * | I reconfirmed MS-VC6. Thank you for wonderful correspondence. | Bruce Momjian | 2005-12-09 | 1 | -0/+6 |
| * | Stamp libraries for 8.2 by updating minor library version numbers and | Bruce Momjian | 2005-12-09 | 7 | -16/+16 |
| * | Simplify lock manager data structures by making a clear separation between | Tom Lane | 2005-12-09 | 11 | -573/+392 |
| * | > 1) I'm proposing a patch to do the DROP FUNCTION argument tab completion. | Bruce Momjian | 2005-12-08 | 1 | -6/+70 |
| * | Add missing translation marker | Peter Eisentraut | 2005-12-08 | 1 | -3/+3 |
| * | Fix bgwriter's failure to release buffer pins and open files after an | Tom Lane | 2005-12-08 | 2 | -6/+21 |
| * | Disble some Win32-specific code in win32-client-only builds: | Bruce Momjian | 2005-12-08 | 3 | -6/+12 |
| * | Fix thinko in comment. | Tom Lane | 2005-12-08 | 1 | -2/+2 |
| * | Push the responsibility for handling ignore_killed_tuples down into | Tom Lane | 2005-12-07 | 4 | -72/+72 |
| * | A couple of tiny performance hacks in _bt_step(). Remove PageIsEmpty | Tom Lane | 2005-12-07 | 1 | -8/+10 |
| * | Fix a couple of lingering references to POSTQUEL query syntax, per Simon. | Tom Lane | 2005-12-07 | 2 | -6/+6 |
| * | Spell "explicitly" correctly, per Simon. | Tom Lane | 2005-12-07 | 3 | -9/+9 |
| * | Get rid of slru.c's hardwired insistence on a fixed number of slots per | Tom Lane | 2005-12-06 | 9 | -65/+118 |
| * | Add documentation on the use of *printf() macros and libintl. | Bruce Momjian | 2005-12-06 | 1 | -3/+4 |
| * | Arrange for read-only accesses to SLRU page buffers to take only a shared | Tom Lane | 2005-12-06 | 5 | -28/+145 |
| * | In a nestloop inner indexscan, it's OK to use pushed-down baserestrictinfo | Tom Lane | 2005-12-06 | 1 | -22/+12 |
| * | ecpg/pgtypeslib seems to need snprintf.c pulled in, too. | Tom Lane | 2005-12-06 | 1 | -11/+13 |
| * | Put undef's before extern declarations that need 'em, per Andrew Dunstan. | Tom Lane | 2005-12-06 | 1 | -19/+19 |
| * | Make Win32 build use our port/snprintf.c routines, instead of depending | Tom Lane | 2005-12-06 | 6 | -24/+36 |
| * | Document return-value conventions used by this implementation, per | Tom Lane | 2005-12-05 | 1 | -4/+24 |
| * | Add regression test to see if the min/max values of int8 convert correctly. | Tom Lane | 2005-12-05 | 3 | -0/+40 |
| * | Fix a rather sizable number of problems in our homegrown snprintf, such as | Tom Lane | 2005-12-05 | 1 | -491/+729 |
| * | Treat procedural languages as owned by the bootstrap superuser, rather | Tom Lane | 2005-12-03 | 3 | -23/+54 |
| * | Fix out-of-order inclusion of -L switches from LDFLAGS on AIX and HPUX. | Tom Lane | 2005-12-03 | 1 | -3/+6 |
| * | Allow to_char(interval) and to_char(time) to use AM/PM specifications. | Bruce Momjian | 2005-12-03 | 1 | -20/+16 |
| * | Tweak indexscan machinery to avoid taking an AccessShareLock on an index | Tom Lane | 2005-12-03 | 12 | -35/+95 |
| * | Fix obsolete comment. | Tom Lane | 2005-12-02 | 1 | -2/+2 |
| * | Adjust scan plan nodes to avoid getting an extra AccessShareLock on a | Tom Lane | 2005-12-02 | 9 | -92/+135 |
| * | Added special handling of CONNECTION variable that is used by ECPG instead of... | Michael Meskes | 2005-12-02 | 3 | -13/+33 |
| * | Remove comment on errno=0 lines, but add mention to port/strtol.c function. | Bruce Momjian | 2005-12-02 | 4 | -26/+35 |
| * | Rearrange code in ExecInitBitmapHeapScan so that we don't initialize the | Tom Lane | 2005-12-02 | 1 | -6/+10 |
| * | Add comment to pg_atoi. | Bruce Momjian | 2005-12-01 | 1 | -2/+2 |
| * | Comment "errno = 0" in a more generic way. | Bruce Momjian | 2005-12-01 | 2 | -24/+24 |
| * | Retry in FileRead and FileWrite if Windows returns ERROR_NO_SYSTEM_RESOURCES. | Tom Lane | 2005-12-01 | 1 | -3/+58 |
| * | Add comments about why errno is set to zero. | Bruce Momjian | 2005-12-01 | 2 | -24/+24 |
| * | Check for overflow in strtol() while parsing datetime inputs. | Tom Lane | 2005-12-01 | 1 | -1/+33 |
| * | Refactor some bits in aclchk.c in order to reduce code duplication. | Alvaro Herrera | 2005-12-01 | 3 | -413/+310 |
| * | Rearrange code in pg_atoi() to avoid assuming that isspace() cannot | Tom Lane | 2005-11-30 | 1 | -15/+15 |
| * | Tweak choose_bitmap_and() heuristics in the light of example provided in bug | Tom Lane | 2005-11-30 | 1 | -8/+54 |
| * | - Made several variables "const char *" instead of "char *" as proposed by Qi... | Michael Meskes | 2005-11-30 | 8 | -40/+49 |
| * | Fix EXPLAIN and EXECUTE commands to pass portal parameters through to | Tom Lane | 2005-11-29 | 5 | -21/+29 |
| * | Tweak hash join code to use an additional heuristic for deciding whether | Tom Lane | 2005-11-28 | 2 | -5/+42 |
| * | Come to think of it, the backend doesn't use -lz either. | Tom Lane | 2005-11-28 | 1 | -3/+3 |
| * | Don't link readline and supporting libraries into the backend. | Tom Lane | 2005-11-28 | 1 | -1/+4 |