aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Re-add USE_THREADS, used by ecpg.Bruce Momjian2003-08-04
|
* Must print server's failure message before trying reconnect, not after.Tom Lane2003-08-04
|
* Fix pltcl and plpython to support STATEMENT triggers.Tom Lane2003-08-04
| | | | Joe Conway
* SSL_read/SSL_write do not approximate the return conventions of recv()Tom Lane2003-08-04
| | | | | | and send() very well at all; and in any case we can't use retval==0 for EOF due to race conditions. Make the same fixes in the backend as are required in libpq.
* Fix some more problems with testing error returns from SSL.Tom Lane2003-08-04
|
* Fix thread handling in configure.Bruce Momjian2003-08-04
|
* Minor cleanups in S_LOCK_TEST code.Tom Lane2003-08-04
|
* HPUX's horology behavior is OS-dependent, not hardware-dependent.Tom Lane2003-08-04
|
* Translation updatesPeter Eisentraut2003-08-04
|
* Remove --enable-recode feature, since it's been broken by IPv6 changes,Tom Lane2003-08-04
| | | | and seems to have too few users to justify maintaining.
* Update copyrights to 2003.Bruce Momjian2003-08-04
|
* Fix for 2003 again.Bruce Momjian2003-08-04
|
* Update copyright script for 2003.Bruce Momjian2003-08-04
|
* Put back braces removed by pgindent (not really pgindent's fault).Tom Lane2003-08-04
|
* pgindent run.Bruce Momjian2003-08-04
|
* Remove extra paren in NOT_USED code, found by pgindent.Bruce Momjian2003-08-04
|
* Tighten inline_function's test for overly complex parameters. ThisTom Lane2003-08-03
| | | | | should catch most situations where repeated inlining blows up the expression complexity unreasonably, as in Joe Conway's recent example.
* Reconsider context for calling callback functions --- original ideaTom Lane2003-08-03
| | | | that they aren't part of error processing is clearly faulty.
* Comment out entries for IPv6 localhost connections, since they failTom Lane2003-08-01
| | | | on machines with no IPv6 support.
* Postmaster erroneously rejected SSL connections on IPv6.Tom Lane2003-08-01
|
* Fix some unprotected references to AF_UNIX ... wouldn't compile onTom Lane2003-08-01
| | | | platforms without AF_UNIX sockets.
* inet_recv() wasn't IPv6-ready.Tom Lane2003-08-01
|
* Code review for sslmode patch: eliminate memory leak, avoid giving aTom Lane2003-08-01
| | | | | | completely useless error message in 'allow' case, don't retry connection at the sendauth stage (by then the server will either let us in or not, no point in wasting cycles on another try in the other SSL state).
* Since HPUX now exists for Itanium, we should decouple the assumptionTom Lane2003-08-01
| | | | | | | | that OS=hpux is the same as CPU=hppa. First steps at doing this. With these patches, we still work on hppa with either gcc or HP's cc. We might work on hpux/itanium with gcc, but I can't test it. Definitely will not work on hpux/itanium with non-gcc compiler, for lack of spinlock code.
* Get the include ordering right for TCL includes vs whatever is comingTom Lane2003-08-01
| | | | from --with-includes.
* Missed two places to replace union member.Michael Meskes2003-08-01
|
* Fix a few of the more blatantly unportable constructs in this file.Tom Lane2003-08-01
|
* Fix inconsistent static-vs-not-static declarations.Tom Lane2003-08-01
|
* Fix compile warning.Tom Lane2003-08-01
|
* Russian translation updates by Serguei MokhovPeter Eisentraut2003-08-01
|
* Use only two-part shared library version numbers, for better portabilityPeter Eisentraut2003-08-01
| | | | and consistency.
* While having a parallel-make-safe genbki.sh is good, it's better not toPeter Eisentraut2003-08-01
| | | | uselessly invoke it in parallel in the first place.
* Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs,Peter Eisentraut2003-08-01
| | | | | rather than parsing the message. Add some documentation about embedded SQL.
* Update comments.Bruce Momjian2003-08-01
|
* Update comments.Bruce Momjian2003-08-01
|
* Added missing TO keyword.Michael Meskes2003-08-01
|
* - Added some Informix error codes in Informix mode.Michael Meskes2003-08-01
| | | | - Added just another pgtypeslib function.
* cvs log used -b for head, not -rHEAD.Bruce Momjian2003-08-01
|
* clean python out of MakefileMarc G. Fournier2003-08-01
|
* remove python module, as its moved to http://www.pygresql.orgMarc G. Fournier2003-08-01
|
* Fix my own mistake in GUC variable annotation.Tom Lane2003-08-01
|
* Adjust 'permission denied' messages to be more useful and consistent.Tom Lane2003-08-01
|
* Fix mistaken error code assignments, per Peter's note 7/28/03.Tom Lane2003-07-31
|
* When using a temp installation, unset PGUSER and other variables weTom Lane2003-07-31
| | | | | | might have inherited from the environment that would possibly cause psql to fail to connect to the temp installation properly. Per trouble report from Markus Bertheau 7/1/03.
* Cause library-preload feature to report error if specified initializationTom Lane2003-07-31
| | | | | function is not found. Also, make all the PL libraries have initialization functions with standard names. Patch from Joe Conway.
* Upgrade parsing code for ACLs to be less hokey and more cognizant ofTom Lane2003-07-31
| | | | | the actual logical structure and quoting rules being used. Fixes bug reported by Chris K-L on 7/8/03.
* Add fflush of stdout when outputing query.Bruce Momjian2003-07-31
|
* Add pretty-printing variants of pg_get_viewdef and related functions.Tom Lane2003-07-30
| | | | Patch from Andreas Pflug.
* Fix numeric_smaller, numeric_larger, float4smaller, float4larger,Tom Lane2003-07-30
| | | | | | | | float8smaller, float8larger (and thereby the MIN/MAX aggregates on these datatypes) to agree with the datatypes' comparison operations as regards NaN handling. In all these datatypes, NaN is arbitrarily considered larger than any normal value ... but MIN/MAX had not gotten the word. Per recent discussion on pgsql-sql.
* Cause ARRAY[] construct to return a NULL array, rather than raising anTom Lane2003-07-30
| | | | | | error, if any input element is NULL. This is not what we ultimately want, but until arrays can have NULL elements, it will have to do. Patch from Joe Conway.