summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-01-16Back-patch critical fixes for NUMERIC values in plpgsql functions.REL6_5_PATCHESTom Lane
2000-01-16Back-patch critical fixes for NUMERIC...Tom Lane
2000-01-10Back-patch a low-risk fix for the 'HEAP_MOVED_IN was not expected' bug:Tom Lane
just dike out the code that tries to remove pages from fraged_pages.
2000-01-08Back-patch fix for oversize index tuples during index creation.Tom Lane
2000-01-04Back-patch fix for problems with oversize pg_statistic tuples when bothTom Lane
the min and max values of a column are long.
2000-01-04Repair two recently reported problems:Thomas G. Lockhart
1) datetime_pl_span() added the seconds field before adding the months field. This lead to erroneous results for e.g. select datetime '1999-11-30' + timespan '1 mon - 1 sec'; Reverse the order of operations to add months first. 2) tm2timespan() did all intermediate math as integer, converting to double at the very end. This resulted in hidden overflows when given very large integer days, hours, etc. For example, select '74565 days'::timespan; produced the wrong result. Change code to ensure that doubles are used for intermediate calculations. Thanks to Olivier PRENANT <ohp@pyrenet.fr> and Tulassay Zsolt <zsolt@tek.bke.hu> for problem reports and to Tom Lane for accurate analyses.
2000-01-02Update length of timestamp to 30.Bruce Momjian
2000-01-02Backpatch Y2K timestamp patch.Bruce Momjian
1999-12-29Move NT patch into readme.Bruce Momjian
1999-12-29Add NT patch.Bruce Momjian
1999-12-26Back-patch defense against oversize index tuples and fix for trying toTom Lane
split a page that only has one entry.
1999-12-16MAC addr compare fix.Bruce Momjian
1999-12-06Fix typo in the startup example for RH Linux.Thomas G. Lockhart
Thanks to Kovacs Zoltan <kovacsz@pc10.radnoti-szeged.sulinet.hu>.
1999-12-01Back-patch fix for password checker's file descriptor leak.Tom Lane
1999-11-23Fix _cplusplus test in both trees.Bruce Momjian
1999-11-15Tree dividing is not appropriate in Rtree.Tatsuo Ishii
This fix is reported by Hiroki Kataoka (kataoka@interwiz.koganei.tokyo.jp).
1999-11-12Update NT readme with new name.Bruce Momjian
1999-11-07Fix ecpg quoting bug in 6.5.* release.Bruce Momjian
1999-11-04Update bsdi for bsd/os 4.1REL6_5_3Bruce Momjian
1999-11-02Fix for perl5.Bruce Momjian
1999-11-02Update for perl5 in Makefile.Bruce Momjian
1999-11-02Update for pgaccess 0.98Bruce Momjian
1999-11-01Update for 6.5.3.Bruce Momjian
1999-11-01Backpatch REL6_5 for missing inherit '*' in rule dumps.Tom Lane
1999-10-31Update for pgaccess 0.98.Bruce Momjian
1999-10-31Update for pgaccess 0.98.Bruce Momjian
1999-10-31Update for 0.98 pgaccessBruce Momjian
1999-10-30Update pgaccess for 0.98.Bruce Momjian
1999-10-19Back-patch LIMIT + INTERSECT fix into 6.5.*.Tom Lane
1999-10-19Not to change pg_log status after "commit".Hiroshi Inoue
This will happen when elog(ERROR)(elog(FATAL) also in 7.0) is called in vacuum after the internal commit.
1999-10-13update jdbc version #.Bruce Momjian
1999-10-12Update new HISTORY file.Bruce Momjian
1999-10-12Update for 6.5.3, including new INSTALL file and updated HISTORY.Bruce Momjian
1999-10-12I have created a small patch that makes possible to compile pgsql on newerBruce Momjian
Cygwin snapshots (tested on 990115 which is recommended to use - it fixes some errors in B20.1) And I have another patch for including <sys/ipc.h> before <sys/sem.h> in backend/storage/lmgr/proc.c - it is required due the design of cygipc headers Dan
1999-10-09Move __alpha to port/alpha.h.Bruce Momjian
1999-10-08Define __alpha__ for __alpha.Bruce Momjian
1999-09-28Update README.NTBruce Momjian
1999-09-28Update FAQ.Bruce Momjian
1999-09-28Update NT readme.Bruce Momjian
1999-09-27Update README.NTBruce Momjian
1999-09-27Update README.NT with patch.Bruce Momjian
1999-09-27New Solaris FAQ.Bruce Momjian
1999-09-27new solaris faq.Bruce Momjian
1999-09-27Remove 'v' from #include line.Bruce Momjian
1999-09-24Fix the omitted declarations to allow '^' and '|' as math operators.Thomas G. Lockhart
Problem was introduced when precedence was added for these. How did *those* changes get into the stable tree in the first place??
1999-09-23Backpatch into 6.5.*.Bruce Momjian
One last missing quoting bug in pg_dump: now that sequence names are properly quoted for field defaults, mixed case sequence names are generated. These are properly quoted in the CREATE SEQUENCE lines, but not in the SELECT nextval lines, as per below: CREATE SEQUENCE "Teams_TeamID_seq" start 10 increment 1 maxvalue 2147483647 minvalue 1 cache 1 ; SELECT nextval ('Teams_TeamID_seq'); This needs to be: SELECT nextval ('"Teams_TeamID_seq"'); Patch included below. -- Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu>
1999-09-20Add new files.Bruce Momjian
1999-09-20Update pgaccess 0.98.Bruce Momjian
1999-09-18Back-patch fix for NULL condition in CASE.Tom Lane
1999-09-17re-add Makefile for pgaccessBruce Momjian