aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* pgindent run. Make it all clean.Bruce Momjian2001-03-22
|
* correctionPeter Eisentraut2001-03-21
|
* The attached patch fixes win32.mak which got broken by the Multibyte modHiroshi Inoue2001-03-21
| | | | | | :-(, and tidies it up a little as well. Regards, Dave.
* Update TODO list.Bruce Momjian2001-03-21
|
* Check bufHdr->cntxDirty and call StartBufferIO in BufferSync()Vadim B. Mikheev2001-03-21
| | | | | | | | *before* acquiring shlock on buffer context. This way we should be protected against conflicts with FlushRelationBuffers. (Seems we never do excl lock and then StartBufferIO for the same buffer, so there should be no deadlock here, - but we'd better check this very soon).
* a fix from Eiji Tokuya.Hiroshi Inoue2001-03-21
|
* Add mmap info. Seems mmap may not be a good idea.Bruce Momjian2001-03-21
|
* Update TODO list.Bruce Momjian2001-03-21
|
* well, here goes our first Release Candidate for 7.1 *cross fingers*Marc G. Fournier2001-03-20
|
* Fix 'ps' WAIT status display bug on setproctitle() platforms, cleared byBruce Momjian2001-03-20
| | | | Tom Lane.
* Update Japanese FAQ.Bruce Momjian2001-03-20
|
* Update TODO list.Bruce Momjian2001-03-20
|
* Recommend CREATE TABLE AS in preference to SELECT INTO. Remove theTom Lane2001-03-20
| | | | | (inadequate anyway) mention of SELECT INTO from the main SELECT ref page. Point out that SELECT INTO means something else in plpgsql and ecpg.
* Update TODO list.Bruce Momjian2001-03-20
|
* Update TODO list.Bruce Momjian2001-03-20
|
* Update TODO list.Bruce Momjian2001-03-20
|
* Update TODO list.Bruce Momjian2001-03-20
|
* Repair intarray's problems with TOASTed input, avoid scribbling onTom Lane2001-03-20
| | | | | source data, improve split algorithm for intbig_ops. Oleg Bartunov with some kibitzing from Tom Lane.
* Mention that parallel regress script needs to be run under ksh not shTom Lane2001-03-20
| | | | on HPUX.
* Discuss LOCALE differences as a reason for regression test failure.Tom Lane2001-03-20
|
* Tweak out-of-memory error messages to include the request size, so thatTom Lane2001-03-19
| | | | | it's easier to tell whether a bug report is talking about progressive memory exhaustion or a wacko requested chunk size.
* Make regular-expression error messages a tad less obscure,Tom Lane2001-03-19
| | | | per gripe from Josh Berkus.
* Update Peter Mount's email address in README.Bruce Momjian2001-03-19
|
* Add missing TO.Peter Eisentraut2001-03-19
|
* Add note about saving large objects during upgrade.Peter Eisentraut2001-03-19
|
* - Added CVS headers to filesPhilip Warner2001-03-19
| | | | | | | - Avoid forcing table name to lower case in FixupBlobXrefs - Removed fmtId calls for all ArchiveEntry name fields. This fixes quoting problems in trigger enable/disable code for mixed case table names, and avoids commands like 'pg_restore -t '"TblA"'
* Restore include-file updates, and fix some of the more glaring macroTom Lane2001-03-18
| | | | | sloppiness (insufficient parenthesization, etc). It still fails regress test for me, however.
* Restore Peter's makefile fixes.Tom Lane2001-03-18
|
* Give postmaster enough time to update the pidfile before checking toTom Lane2001-03-18
| | | | | see if it's been updated. Skip the whole mess if we didn't see any old pidfile.
* Remove NEXTXID xlog record type to avoid three-way deadlock risk.Tom Lane2001-03-18
| | | | | NEXTXID isn't really necessary, per previous discussion in pghackers, but I mulishy insisted we should put it in anyway. Mea culpa.
* When we add 'waiting' to the ps_status display, there should be aTom Lane2001-03-18
| | | | space in front of it. Improve comments a little.
* Considering the BeOS port didn't compile without IPC_STAT and shm_nattch,Tom Lane2001-03-18
| | | | I'm betting the QNX4 port does not either ...
* Patches from Cyril Velter to make shared-memory-conflict-detection codeTom Lane2001-03-18
| | | | work in BeOS port.
* Fixed but in _enableTriggersIfNecessary introduced by previous patches by mePhilip Warner2001-03-18
| | | | which caused segfault in a data-only retore with BLOBs
* Fix coredump due to writing one more byte than we'd allocated.Tom Lane2001-03-18
|
* Make sure ControlFile logId/logSeg don't go backwards (barely possible given aTom Lane2001-03-18
| | | | slow backend, if we update unconditionally as the code did before).
* Update contrib intarray to Jan 25 version.Bruce Momjian2001-03-17
|
* Rearrange XLogFileInit so that control-file spinlock is not held while fillingTom Lane2001-03-17
| | | | | the new log file with zeroes, only while renaming it into place. This should prevent problems with 'stuck spinlock' errors under heavy load.
* Reformat the "major changes" to 72 or so columns.Peter Eisentraut2001-03-17
|
* Repair.Peter Eisentraut2001-03-17
|
* Tuning for docbook2man.Peter Eisentraut2001-03-17
|
* New updates from Roberto Mello sent privately today due to email troubles.Thomas G. Lockhart2001-03-17
|
* Make note that version 1.1.8 doesn't work.Peter Eisentraut2001-03-16
|
* Generated Changelog since last Beta ...Marc G. Fournier2001-03-16
|
* upgrade version to beta6Marc G. Fournier2001-03-16
|
* Documentation update from Marko Kreen.Tom Lane2001-03-16
|
* Fixed bug in handling of pointers to structs.Michael Meskes2001-03-16
|
* Oops I forgot to add new files for multibyte support.Hiroshi Inoue2001-03-16
| | | | Sorry Eiji.
* Support syncing WAL log to disk using either fsync(), fdatasync(),Tom Lane2001-03-16
| | | | | | | | O_SYNC, or O_DSYNC (as available on a given platform). Add GUC parameter to control sync method. Also, add defense to XLogWrite to prevent it from going nuts if passed a target write position that's past the end of the buffers so far filled by XLogInsert.
* Resetting the XLOG can't include rewinding it to logical position zero,Tom Lane2001-03-16
| | | | | | because we need page LSNs stored in the main database to be less than the current XLOG position. Hence, generate the new XLOG segment at last old segment number plus one.