summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-01-14Back-patch fix for crash in GetRawDatabaseInfo(), just in case someoneTom Lane
else needs it.
2001-01-04Back-patch fix for 'btree: failed to add item to the page in _bt_sort (2)'Tom Lane
failure during index creation. This problem should be gone in current sources, but I just thought I'd commit the 7.0.* patch in case anyone else needs it.
2000-12-09Fix a bug in conversion from big5 to EUC_TW (CNS 11643-1992 Plane 3)Tatsuo Ishii
Thanks Chih-Chang Hsieh <cch@cc.kmu.edu.tw> for finding the bug.
2000-11-17Fix bugs in EUC_TW support. This fix includes patches contributedTatsuo Ishii
by Chih-Chang Hsi. See "A Patch for MIC to EUC_TW code converting in mb support" posting in pgsql-patches list dated 09 Nov 2000.
2000-11-17Recongizing PGCLIENTENCODING has been broken since 7.0.Tatsuo Ishii
2000-11-10Stopgap patch for problem with cursors using hash joins: an ABORTTom Lane
would cause two attempts to delete the hashtable portal, one from query shutdown and one from portalmem.c. Fix by making hash portals be treated as 'special' portal names, so that CollectNamedPortals will not think it should delete them. This code is in need of complete rewrite (and is already largely rewritten in current sources), but still need to put a finger in the dike for 7.0.*.
2000-11-03Brand 7.0.3.Bruce Momjian
2000-11-02Revoked changes for pg_dumpaccountsJan Wieck
Script will go into the contrib directory. Jan
2000-11-02New dump utility script pg_dumpaccounts.Jan Wieck
Dumps pg_shadow and pg_group (derived from pg_dumpall). Jan
2000-11-02Fix for inserting/copying longer multibyte strings into bpchar dataTatsuo Ishii
types.
2000-10-22Back-patch fix for bogus clearing of BufferDirtiedByMe.Tom Lane
2000-10-22Fix to_char() to avoid coredump on NULL input. Not needed in currentTom Lane
sources due to fmgr rewrite, but 7.0.3 can use the patch...
2000-10-19Fix time_larger, time_smaller, timetz_larger, timetz_smaller to meetTom Lane
nodeAgg.c's expectation that aggregate transition functions never return pointers to their input values. This is fixed in a much better way in current sources, but in 7.0.* it's gotta be done like this.
2000-10-19Back-patch fix for AM/PM boundary problem in to_char().Tom Lane
Fix from Karel Zak, 10/18/00.
2000-10-19Back-patch CommandCounterIncrement fix.Tom Lane
2000-10-17Patch VACUUM problem with moving chain of update tuples when sourceTom Lane
and destination of a tuple lie on the same page.
2000-10-06Back-patch nodeMaterial to honor chgParam by recomputing its output.Tom Lane
2000-10-04avoid database-wide restart on write errorHiroshi Inoue
2000-09-30Back-patch fix for TRUNCATE failure on relations with indexes.Tom Lane
2000-09-25Back-patch fix to grab read lock on a buffer while it is written out.Tom Lane
2000-09-23Back-patch code to deduce implied equalities from transitivity ofTom Lane
mergejoin clauses, and add these equalities to the given WHERE clauses. This is necessary to ensure that sort keys we think are equivalent really are equivalent as soon as their rels have been joined. Without this, 7.0 may create an incorrect mergejoin plan.
2000-09-23Back-patch fix for subselect in targetlist of Append node.Tom Lane
2000-09-23Back-patch fix to make pg_dump dump 'iscachable' flag for functions.Tom Lane
2000-09-23Back-patch fix that allows AllocateFile() to return errno=ENFILE/EMFILETom Lane
after we are no longer able to close any more VFDs. This is needed to avoid postmaster crash under out-of-file-descriptors conditions.
2000-09-23Back-patch fix for '.' not in PATH at build time, per SL Baur.Tom Lane
2000-09-23Back-patch fix to include kernel errno message in all smgr elog messages.Tom Lane
2000-09-23Back-patch fix for 'Sorcerer's Apprentice' syndrome wherein md.c wouldTom Lane
create a vast quantity of zero-length files if asked to access a block number far beyond the actual end of a relation.
2000-09-23Back-patch fix for erroneous use of strcmp().Tom Lane
2000-09-23Back-patch fix for erroneous selectivity of not-equals.Tom Lane
2000-09-23Apply Jeroen van Vianen's patch for failure to check heap_openr failureTom Lane
in RI triggers. This is fixed in another way in current sources, but might as well apply this patch to REL7_0 branch so that 7.0.3 need not suffer this crash.
2000-09-23Back-patch fix to copy sub-Query nodes before planning them. ThisTom Lane
fixes problems with subselects appearing in contexts like COALESCE or BETWEEN, where parser will make multiple links to same subexpression.
2000-09-23Back-patch fix to remove bogus use of int4out().Tom Lane
2000-09-23Back-patch fix for erroneous free() of getpwuid() result.Tom Lane
2000-09-20Cancel request while waiting for a lock should try to wakeHiroshi Inoue
up sleeping processes.
2000-09-19Back-patch fix to ensure that VACUUM always calls FlushRelationBuffers.Tom Lane
2000-09-15Allow PL/pgSQL accept non ascii identifiersTatsuo Ishii
2000-09-08Back-patch fix for bogus plans involving non-mark/restorable planTom Lane
as inner plan of a mergejoin.
2000-09-07Fix psql crash. If MULTIBYTE is enabled, \l+ dumps core due toTatsuo Ishii
SQL buffer in listAllDbs is just too small.
2000-08-30Back-patch fix to ensure we abort any open transaction at backend exit.Tom Lane
2000-08-28oops, in v7.x its USE_SYSLOG, not ENABLE_SYSLOGMarc G. Fournier
modify config.h.in so that it gets set by configure properly
2000-08-28backpatch the --enable-syslog functionality to REL7_0 branchMarc G. Fournier
2000-07-27Back-patch primary fix for planner recursion bug.Tom Lane
2000-07-26SELECT ... FOR UPDATE neglects duplicate key checking.Tatsuo Ishii
patches submitted by Hiroshi Inoue.
2000-07-13Backpatch backwards-index-scan fix.Tom Lane
2000-07-07Back-patch StrNCpy fix.Tom Lane
2000-06-28Back-patch COPY WITH OIDS leak fix.Tom Lane
2000-06-15Back-patch large-object fix.Tom Lane
2000-06-15Backpatch jdbc fixes into 7.0.X.Bruce Momjian
2000-06-12Brand 7.1 release. Also update jdbc version in release branch.Bruce Momjian
2000-06-06Backpatch SearchSysCacheTupleCopy fix for init_fcache.Tom Lane