aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Another try at making numeric MODULO operator produce the right answer.Tom Lane2001-04-14
| | | | | | Although it was now using the right equation, it was making bogus choices of the precision to compute intermediate results to. I'm not sure this is really right even yet, but it's better than before ...
* Suppress compiler warnings in Vax and NS32K assembly code: 'register foo'Tom Lane2001-04-13
| | | | is not a complete declaration.
* tag the source tree as REL7_1, renaming the old tag REL7_1_BETA like itREL7_1Marc G. Fournier2001-04-13
| | | | | | | | | | | should have been done generate a new Changelog from rc4, which is nice and short ... one python interface change tag configure as 7.1, for generating the packages ... This is it folks ... Release 7.1 is officially here ...
* Remove as-of from HISTORY file.Bruce Momjian2001-04-13
|
* I just noticed the beta comment. That's not actually true any moreD'Arcy J.M. Cain2001-04-12
| | | | so I removed it.
* Update FAQ.Bruce Momjian2001-04-09
|
* Update FAQ.Bruce Momjian2001-04-08
|
* upgrade tags to rc4 (note lower case for packagers)Marc G. Fournier2001-04-08
|
* Rearrange distribution split as discussed on -hackers.Peter Eisentraut2001-04-08
|
* Update to reflect OpenSSL 0.9.6a release.Peter Eisentraut2001-04-08
|
* Update TODO list.Bruce Momjian2001-04-07
|
* update the change log, but nothing else ...Marc G. Fournier2001-04-06
|
* Revert wrong SCO OpenServer report, update comments and improve formattingPeter Eisentraut2001-04-06
| | | | a bit. Regenerate INSTALL.
* Sorry my previous change was a mistake.Hiroshi Inoue2001-04-06
|
* Utility to add the stylesheet "s0" definition to an RTF file.Thomas G. Lockhart2001-04-06
| | | | | This stylesheet must be present for Applixware to be happy generating a ToC. M$Word does not seem to care one way or the other.
* mark it as RC3 ...Marc G. Fournier2001-04-06
|
* 1) Fit the precision of floating point to that of server sideHiroshi Inoue2001-04-06
| | | | | | (fix by Hiroki kataoka). 2) Ensure the definition of atof()(#include stdlib.h). (suggestion by Masaaki Sakaida).
* Final (?) platform update for the 7.1 release. Includes new platformThomas G. Lockhart2001-04-06
| | | | | NetBSD/PPC from Henry Hotz, several other platform updates, and move QNX to the unsupported list for now.
* Alter the previous test for "time with time zone" implicit time zoneThomas G. Lockhart2001-04-06
| | | | | | | (which failed miserably during DST) to just compare against a time derived from a timestamp value. Certainly not a direct check for a correct result, but should work at any time of year.
* Since plpgsql keeps its compiled function parsetrees until backend exit,Tom Lane2001-04-06
| | | | | | it needs to ensure that data structures attached to fmgr info records in the trees will stick around that long, too. Current code was crashing on cases like datatypes with old-style I/O functions.
* Fix comment that Vadim found confusing.Tom Lane2001-04-05
|
* StartupXLOG(): initialize XLogCtl->Insert to new page if there isVadim B. Mikheev2001-04-05
| | | | no room for a record on last log page.
* Hopefully fixed the long long problem.Michael Meskes2001-04-05
|
* pg_dump needs to use ONLY when selecting data from user tables, in caseTom Lane2001-04-05
| | | | they have children. As it stood, -d dump mode was badly broken.
* Clean up AIX makefile to recognize subversions of AIX 4.1 correctly.Tom Lane2001-04-04
| | | | | This patch is Peter E's, but I'm applying it on his behalf so it'll get into 7.1RC3 tonight (I'm guessing Peter went to bed already).
* Update TODO list.Bruce Momjian2001-04-04
|
* Update TODO list.Bruce Momjian2001-04-04
|
* Fix/cleanup DLLLIBS handling for Cygwin port. If it works it's toTom Lane2001-04-04
| | | | Jason Tishler's credit, if it's broken it's my fault ...
* Update TODO list.Bruce Momjian2001-04-04
|
* Remove daylight-savings-time-dependent tests of 'time with time zone'Tom Lane2001-04-04
| | | | | datatype. Perhaps someday we can figure out a way of getting reproducible results from testing this type, but for now ...
* updatePeter Eisentraut2001-04-04
|
* Have to lock buffer while changing page' LSN.Vadim B. Mikheev2001-04-04
| | | | Thanks to Tom.
* Don't dump CHECK constraints with same source and names bothPhilip Warner2001-04-04
| | | | starting with '$'.
* Log sequence creation (to initialize magic number on recovery).Vadim B. Mikheev2001-04-03
|
* Provide snprintf() if system hasn't got it.Tom Lane2001-04-03
|
* See attached for a minor documentation patch that more accurately reflectsBruce Momjian2001-04-03
| | | | | | | | | | the current state of and the issues with PostgreSQL on Windows. Thanks, Jason -- Jason Tishler
* Correct bogus mktime() calls.Tom Lane2001-04-03
|
* Remove last-updated date stamp for 7.1.Bruce Momjian2001-04-03
|
* - Handle overridden attrs as per discussions 2-Apr-2001Philip Warner2001-04-03
| | | | - Dump CHECK constraints in OID order
* Check for failure of malloc() and realloc() when allocating space forTom Lane2001-04-03
| | | | | | VFD entries. On platforms where dereferencing a null pointer doesn't lead to coredump, it's possible that this omission could have led to unpleasant behavior like deleting the wrong file.
* open(2) flags saved for re-opening a virtual file should probably notTom Lane2001-04-03
| | | | include O_CREAT.
* Restore pre-7.1 behavior of allowing DROP of a table whose underlyingTom Lane2001-04-02
| | | | | | physical file has disappeared. There is no really good reason why relcache should be opening the underlying file at all, AFAICS. In any case we needn't raise a hard error here.
* _mdfd_getrelnfd() should include kernel error code in failure message.Tom Lane2001-04-02
|
* Complain if the same column name is inherited from multiple parentsTom Lane2001-04-02
| | | | | | with different default values, unless the child table redeclares the column with an explicit default. This was judged to be the approach least likely to cause unpleasant surprises.
* Update HISTORY/release.sgml to current.Bruce Momjian2001-04-02
|
* Update TODO list.Bruce Momjian2001-04-02
|
* Update TODO list.Bruce Momjian2001-04-02
|
* Update info for platforms BeOS, Tru64, Linux/MIPS, Linux/x86, NetBSD/Alpha,Thomas G. Lockhart2001-04-02
| | | | NetBSD/arm, NetBSD/VAX, OpenBSD/Sparc, Solaris, Ultrix.
* Update TODO list.Bruce Momjian2001-04-02
|
* Disable creation of indexes on system tables.Bruce Momjian2001-04-02
|