| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix indenting of log_min_error_statement. | Bruce Momjian | 2003-01-09 | 1 | -3/+4 |
| * | Remove bit.c/h routines. Not used anymore. | Bruce Momjian | 2003-01-09 | 3 | -81/+2 |
| * | Repair inconsistent rounding behavior for timestamp, time, interval, | Tom Lane | 2003-01-09 | 2 | -105/+56 |
| * | Add missing pg_proc entry for interval_scale(). The lack of this entry | Tom Lane | 2003-01-09 | 1 | -3/+6 |
| * | Remove 'const' from secure_write, to prevent compiler warning. | Bruce Momjian | 2003-01-08 | 1 | -3/+3 |
| * | Guard against stopping when numberTuples=0 and counter wraps around. | Tom Lane | 2003-01-08 | 1 | -4/+5 |
| * | The second was that renegotiation was just plain broken. I can't | Bruce Momjian | 2003-01-08 | 2 | -9/+15 |
| * | I was playing around with 7.3.1 and found some more SSL problems. The | Bruce Momjian | 2003-01-08 | 2 | -4/+4 |
| * | Fix dumping of DEFERRABLE/INITIALLY DEFERRED: | Bruce Momjian | 2003-01-08 | 1 | -1/+6 |
| * | Updated deferred trigger patch. | Bruce Momjian | 2003-01-08 | 1 | -6/+6 |
| * | This trivial patch implements disabled, deferred triggers, per my | Bruce Momjian | 2003-01-08 | 1 | -4/+31 |
| * | Enhanced error/help message for pg_controldata. | Bruce Momjian | 2003-01-08 | 1 | -4/+16 |
| * | Reconsider old decision to try to constant-fold default and constraint | Tom Lane | 2003-01-08 | 3 | -20/+8 |
| * | Repair bug noticed by Deepak Bhole: a shell type should have a dependency | Tom Lane | 2003-01-08 | 3 | -43/+71 |
| * | Fix pgpass to work with PQconnectDB(). | Bruce Momjian | 2003-01-08 | 1 | -4/+4 |
| * | Fix for bug #866. 7.3 contains new logic for avoiding redundant calls to | Tom Lane | 2003-01-08 | 3 | -11/+58 |
| * | Only set the database name if we find a match in the services file. | Bruce Momjian | 2003-01-08 | 1 | -8/+12 |
| * | Correction to last patch. As per the DB-API spec, we need to return None | D'Arcy J.M. Cain | 2003-01-08 | 1 | -1/+1 |
| * | Code review for FETCH/MOVE 0 changes. Improve documentation, do the | Tom Lane | 2003-01-08 | 2 | -45/+55 |
| * | SendFunctionResult should take care to detoast varlena results. | Tom Lane | 2003-01-07 | 1 | -2/+2 |
| * | Fix various places where global s/NOTICE/WARNING/ was applied with too | Tom Lane | 2003-01-07 | 6 | -19/+17 |
| * | Apply the proper version of Christopher Kings-Lynne's describe patch | Tom Lane | 2003-01-07 | 6 | -32/+84 |
| * | Add connection service file. | Bruce Momjian | 2003-01-07 | 1 | -0/+16 |
| * | Silence compiler warning caused by removal of netinet/in.h | Bruce Momjian | 2003-01-07 | 1 | -1/+2 |
| * | Fix missing tab in file. | Bruce Momjian | 2003-01-07 | 1 | -2/+2 |
| * | Document libpq service capability, and add sample file. | Bruce Momjian | 2003-01-07 | 2 | -10/+9 |
| * | Tweak mdnblocks() to avoid doing lseek() on segments that it has | Tom Lane | 2003-01-07 | 1 | -1/+16 |
| * | Enable IPv6 libpq 'hostaddr' addresses. Update docs. | Bruce Momjian | 2003-01-06 | 1 | -4/+3 |
| * | Use our own version of getopt_long() if the OS doesn't have one. | Peter Eisentraut | 2003-01-06 | 7 | -176/+267 |
| * | Fix for systems that don't have INET_ADDRSTRLEN. | Peter Eisentraut | 2003-01-06 | 4 | -6/+14 |
| * | Update comments on IPv6 #define. | Bruce Momjian | 2003-01-06 | 1 | -2/+2 |
| * | Update ipv6 comment, move configure test to the right place | Bruce Momjian | 2003-01-06 | 1 | -2/+2 |
| * | Add prototype for getaddrinfo(). | Bruce Momjian | 2003-01-06 | 1 | -1/+2 |
| * | Enable IPv6 connections to the server, and add pg_hba.conf IPv6 entries | Bruce Momjian | 2003-01-06 | 15 | -217/+834 |
| * | ALTER DOMAIN OWNER, from Rod Taylor. | Tom Lane | 2003-01-06 | 5 | -10/+91 |
| * | Revert rpath-mangling patch. See discussion on -patches around Nov 29 for | Peter Eisentraut | 2003-01-05 | 2 | -20/+3 |
| * | Fix inherited UPDATE for cases where child column numbering doesn't | Tom Lane | 2003-01-05 | 3 | -3/+155 |
| * | Partial code review for ALTER DOMAIN patch. Incorporates Rod Taylor's | Tom Lane | 2003-01-04 | 2 | -154/+188 |
| * | Adjust lo type in contrib during pg_restore so that pg_restore could | Hiroshi Inoue | 2003-01-03 | 1 | -1/+81 |
| * | flockfile/funlockfile is POSIX, so NetBSD has them too --- use them. | Bruce Momjian | 2003-01-02 | 1 | -13/+1 |
| * | Enforces NOT NULL constraints to be applied against new PRIMARY KEY | Tom Lane | 2003-01-02 | 6 | -35/+91 |
| * | Fix BSD/OS thread file locking bug in new fseeko code. | Bruce Momjian | 2003-01-02 | 1 | -2/+2 |
| * | fastpath code neglected to check whether user has privileges to call the | Tom Lane | 2003-01-01 | 2 | -6/+18 |
| * | Awhile back I wrote that freebsd.h was probably broken in the places where | Tom Lane | 2003-01-01 | 3 | -12/+20 |
| * | Adjust Tcl-related code to compile cleanly with Tcl 8.4 (add const modifiers as | Tom Lane | 2002-12-30 | 9 | -154/+176 |
| * | Attached is a patch to provide makefiles, etc. to allow the compilation | Bruce Momjian | 2002-12-30 | 5 | -0/+431 |
| * | Code review for transaction-safe-TRUNCATE patch: minor cleanups. | Tom Lane | 2002-12-30 | 2 | -7/+17 |
| * | Code review for CLUSTER ALL patch. Fix bogus locking, incorrect transaction | Tom Lane | 2002-12-30 | 5 | -277/+273 |
| * | Make use of TCL_INCLUDE_SPEC if available (it's new in Tcl 8.4, too bad | Tom Lane | 2002-12-30 | 4 | -6/+10 |
| * | Cause FETCH 1 to return the current cursor row, or zero if at | Bruce Momjian | 2002-12-30 | 5 | -28/+51 |