summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2003-12-20Dept. of third thoughts: in fact, libpq should support SCM_CREDS challengeTom Lane
even when HAVE_GETPEEREID is defined, else it will be unable to connect to pre-7.4 backends that are using IDENT authentication.
2003-12-20Fix broken IDENT support for FreeBSD (appears to have been broken byTom Lane
ill-considered conditional logic in getpeereid patch of 3-Dec-2002). Per bug #1021.
2003-12-19Backpatch pg_service.conf file change to not default dbname to matchBruce Momjian
service name.
2003-12-19Supress ecpg thread test if configure didn't enable threads. FixBruce Momjian
tools/thread to run even if configure didn't enable threads because this test is used before enabling threads for the OS.
2003-12-19Forbid REVOKE on untrusted languages, and don't dump privileges ofPeter Eisentraut
untrusted languages (in case they sneak in).
2003-12-19Add missing $(X).Peter Eisentraut
2003-12-19Make to_hex() behave portably on negative input values (treat them asTom Lane
unsigned integers). Per report from Jim Crate.
2003-12-19Use a shutdown callback to ensure proper clean up when rescanningJoe Conway
partially-evaluated SRFs. Per report found here: http://archives.postgresql.org/pgsql-general/2003-12/msg00851.php
2003-12-18Fix memory leak with SSL connections due to missing X509_free() calls.Tom Lane
Per Neil Conway.
2003-12-18Use a shutdown callback to clear setArgsValid in a FuncExprState that isTom Lane
evaluating a set-valued function. This fixes some additional problems with rescanning partially-evaluated SRFs.
2003-12-18Forgot to change one compatlib.h.Peter Eisentraut
2003-12-18Ensure set-returning functions in the targetlist of a plan node will beTom Lane
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.
2003-12-18Move Informix compatibility include files out of the way. compatlib.hPeter Eisentraut
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.
2003-12-18patch for new OID74TestDave Cramer
2003-12-18backpatch for OID74Test to conform with jdbc testsDave Cramer
2003-12-18backpatch for rs.previous from Kris Jurka, reported by Andrew FyfeDave Cramer
2003-12-18patch for building for an alternate portDave Cramer
2003-12-18back patch by Kris Jurka to get the correct protocol version from the serverDave Cramer
2003-12-18Adjust rules output for unknown-vs-any change (affects expected contentsTom Lane
of pg_stats view definition).
2003-12-17information_schema.constraint_column_usage and key_column_usage shouldTom Lane
not discriminate against system columns, since we support constraints on system columns, and in fact constraints on OID are moderately useful.
2003-12-17Fix DecodeInterval to handle '-0.1' sanely, per gripe from Tilo Schwarz.Tom Lane
2003-12-17Reorder tests in parse_coerce so that ANY/ANYELEMENT/ANYARRAY coercionTom Lane
does not affect UNKNOWN-type literals or Params. This fixes the recent complaint about count('x') being broken, and improves consistency in a few other respects too.
2003-12-17Repair planner failure when there are multiple IN clauses, each withTom Lane
a join in its subselect. In this situation we *must* build a bushy plan because there are no valid left-sided or right-sided join trees. Accordingly, hoary sanity check needs an update. Per report from Alessandro Depase.
2003-12-17back patching fix for compat 7.1 binary stream issues with the new protocolDave Cramer
added test for same
2003-12-17Applied all bug fixes from head also to 7.4. Just bugfixes, no new features.Michael Meskes
2003-12-16Fix constraint_column_usage for foreign keys.Peter Eisentraut
2003-12-13Stamp 7.4.1.Bruce Momjian
Update 7.4.1 FAQ's to current.
2003-12-13patch for returning database metadata as system objects from Kris JurkaDave Cramer
2003-12-12add missing SQLState by Patrick HigginsDave Cramer
2003-12-12cancel row updates sets values to null by Kris JurkaDave Cramer
2003-12-12patch to indicate why test cases failed from Oliver JowettDave Cramer
2003-12-12fix casting pooled connections to PGStatement problem patch by JariPDave Cramer
2003-12-12patch to build under jdk1.1 from Richard ScrantonDave Cramer
2003-12-12binary stream patch by Kris Jurka fixes empty stream failureDave Cramer
2003-12-12metadata encoding patch from Kris JurkaDave Cramer
2003-12-11patch for unique foreign keys and test case from Kris JurkaDave Cramer
2003-12-11patch to make PSQLState serializable, and a test case for itDave Cramer
added a test case for getLastOID
2003-12-10incremented the build number to 210Dave Cramer
2003-12-09query_tree_mutator should copy RangeTblEntry nodes even when it's notTom Lane
planning to modify them itself. Otherwise we end up with shared RTE substructure, which breaks inheritance_planner because the rte->inh flag needs to be independent in each copied subquery. Per bug report from Chris Piker.
2003-12-08Whole-row references were broken for subqueries and functions, becauseTom Lane
attr_needed/attr_widths optimization failed to allow for Vars with attno zero in this case. Per report from Tatsuo Ishii.
2003-12-07Remove test on c.relkind from check_constraints view; unnecessary andTom Lane
prevents view from showing constraints on domains. This addresses the other half of Claus Colloseus' bug report.
2003-12-07Fix typmod interpretation for bit types. (It was erroneously assumed thatPeter Eisentraut
for bit(x), the typmod stores x+4, like for the character types.)
2003-12-07Repair indexed bytea like operations, and related selectivityJoe Conway
functionality. Per bug report by Alvar Freude: http://archives.postgresql.org/pgsql-bugs/2003-12/msg00022.php
2003-12-05backpatch for driver threadsafe problemsDave Cramer
2003-12-05patch from Kris Jurka to allow the server end port to be specified when runningDave Cramer
regression tests, this is a backpatch to 7.4
2003-12-05Guard against bug in Solaris' bsearch(), per Michael Wildpaner.Tom Lane
2003-12-03Planner failed to be smart about binary-compatible expressions in pathkeysTom Lane
and hash bucket-size estimation. Issue has been there awhile but is more critical in 7.4 because it affects varchar columns. Per report from Greg Stark.
2003-12-02The attached patch enables contrib/cube to build cleanly under CygwinBruce Momjian
(again). Please consider this patch for the 7.4.1 branch (if there will be one) too. Jason Tishler
2003-12-01netmask() and hostmask() functions should return maximum-length masklen,Tom Lane
per gripe from Joe Sunday.
2003-12-01Force zero_damaged_pages to be effectively ON during recovery from WAL,Tom Lane
since there is no need to worry about damaged pages when we are going to overwrite them anyway from the WAL. Per recent discussion.