aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Translation updatePeter Eisentraut2004-01-13
|
* Translation updatesDennis Bjorklund2004-01-11
|
* Mark string for translation.Dennis Bjorklund2004-01-11
|
* Fix subquery pullup logic to not be fooled when a view that appearsTom Lane2004-01-10
| | | | | | 'simple' references another view that is not simple. Must recheck conditions after performing recursive pullup. Per example from Laurent Perez, 9-Jan-04.
* Fix incorrect SQL syntax emitted when -E is given without -P.Tom Lane2004-01-09
| | | | Report and fix from Martin Pitt.
* Remove broken (and unnecessary) definition of operator <> for _int4Tom Lane2004-01-08
| | | | | datatype; the generic array comparators added in 7.4 supersede this. Per report and patch from Korea PostgreSQL Users' Group.
* Update OSF thread flags for non-gcc compiles.Bruce Momjian2004-01-08
|
* Translation updatesDennis Bjorklund2004-01-08
|
* Update Solaris thread setting for non-gcc compilers.Bruce Momjian2004-01-08
|
* Translation updatesPeter Eisentraut2004-01-07
|
* Translation updatesPeter Eisentraut2004-01-05
|
* Correct gettext URL.Peter Eisentraut2004-01-04
|
* Fixed bug in GRANT OPTION FOR parsing.Michael Meskes2004-01-04
|
* Fix portability bugs: char values passed to <ctype.h> functions mustTom Lane2004-01-04
| | | | be cast to unsigned char. We have learned this the hard way before.
* Fix discrepancy in prototypes for HPUX pg_dlerror.Tom Lane2004-01-04
|
* Fix ReadOffset() to work correctly when off_t is wider than int.Tom Lane2004-01-04
|
* Remove trailing semicolons from macro initializations in plpython.Bruce Momjian2004-01-04
| | | | | Problem report on True64 Unix by Nikola Milutinovic. ]
* Do an explicit fflush after writing a progress message with puts.Tom Lane2004-01-01
| | | | | This ensures stdout is kept in sync with messages on stderr. Per report from Olaf Ferger.
* Backpatch Solaris non-gcc thread compile fix to 7.4.X.Bruce Momjian2004-01-01
|
* Avoid running out of memory during hash_create, by not passing aTom Lane2003-12-30
| | | | | number-of-buckets that exceeds the size we actually plan to allow the hash table to grow to. Per trouble report from Sean Shanny.
* Added missing whitespaces to array argument parsing.Michael Meskes2003-12-29
|
* Fix sanity-check code that mistakenly assumed error and notice messagesTom Lane2003-12-28
| | | | could never exceed 30K. Per report from Andreas Pflug.
* Avoid infinite loop if connection is lost during PQexecStart() orTom Lane2003-12-28
| | | | PQexecFinish(). Per report from Andreas Pflug.
* Fixed segfault in parsing of EXEC SQL SELECT * FROM foo() AS TBL( c int, i int);Michael Meskes2003-12-24
|
* More bogosity in alter_table test: sometimes causes prepare test to failTom Lane2003-12-23
| | | | by means of arbitrarily renaming tables the other test depends on.
* alter_table test sometimes failed in parallel mode, because of transientTom Lane2003-12-23
| | | | table name conflict against rangefuncs test.
* Regenerate HISTORY for release.Bruce Momjian2003-12-22
|
* Update HISTORY for 7.4.1 release.REL7_4_1Tom Lane2003-12-21
|
* Fix broken markup, adjust 7.4.1 release date, re-sync HEAD with branch.Tom Lane2003-12-21
|
* Some refining of release notes. Markup is still broken by someone else,Peter Eisentraut2003-12-21
| | | | so I cannot remake HISTORY.
* Update 7.4.1 release notes in preparation for release.Bruce Momjian2003-12-21
|
* Dept. of third thoughts: in fact, libpq should support SCM_CREDS challengeTom Lane2003-12-20
| | | | | even when HAVE_GETPEEREID is defined, else it will be unable to connect to pre-7.4 backends that are using IDENT authentication.
* Fix broken IDENT support for FreeBSD (appears to have been broken byTom Lane2003-12-20
| | | | | ill-considered conditional logic in getpeereid patch of 3-Dec-2002). Per bug #1021.
* Update INSTALL file for 7.4.1.Peter Eisentraut2003-12-20
|
* Update HISTORY file for 7.4.1.Bruce Momjian2003-12-20
|
* Backpatch pg_service.conf file change to not default dbname to matchBruce Momjian2003-12-19
| | | | service name.
* Supress ecpg thread test if configure didn't enable threads. FixBruce Momjian2003-12-19
| | | | | tools/thread to run even if configure didn't enable threads because this test is used before enabling threads for the OS.
* 7.4.1 release note improvementsPeter Eisentraut2003-12-19
|
* Forbid REVOKE on untrusted languages, and don't dump privileges ofPeter Eisentraut2003-12-19
| | | | untrusted languages (in case they sneak in).
* Add missing $(X).Peter Eisentraut2003-12-19
|
* Make to_hex() behave portably on negative input values (treat them asTom Lane2003-12-19
| | | | unsigned integers). Per report from Jim Crate.
* Use a shutdown callback to ensure proper clean up when rescanningJoe Conway2003-12-19
| | | | | partially-evaluated SRFs. Per report found here: http://archives.postgresql.org/pgsql-general/2003-12/msg00851.php
* Fix memory leak with SSL connections due to missing X509_free() calls.Tom Lane2003-12-18
| | | | Per Neil Conway.
* Use a shutdown callback to clear setArgsValid in a FuncExprState that isTom Lane2003-12-18
| | | | | evaluating a set-valued function. This fixes some additional problems with rescanning partially-evaluated SRFs.
* Forgot to change one compatlib.h.Peter Eisentraut2003-12-18
|
* Ensure set-returning functions in the targetlist of a plan node will beTom Lane2003-12-18
| | | | | | shut down cleanly if the plan node is ReScanned before the SRFs are run to completion. This fixes the problem for SQL-language functions, but still need work on functions using the SRF_XXX() macros.
* Move Informix compatibility include files out of the way. compatlib.hPeter Eisentraut2003-12-18
| | | | | | was integrated into ecpg_informix.h, the other ones go into their own subdirectory that is automatically considered by the embedded preprocessor when in Informix mode.
* patch for new OID74TestDave Cramer2003-12-18
|
* backpatch for OID74Test to conform with jdbc testsDave Cramer2003-12-18
|
* backpatch for rs.previous from Kris Jurka, reported by Andrew FyfeDave Cramer2003-12-18
|