aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* tag it Release Candidate 1, as previously discussedREL7_4_RC1PostgreSQL Daemon2003-11-03
|
* Adjust data types in some of the UNION tests to avoid potentiallyTom Lane2003-11-02
| | | | platform-dependent results, as per example from Larry Rosenman.
* Provide a way to run the parallel regression tests with a user-specifiedTom Lane2003-11-02
| | | | | limit on the number of simultaneous connections. Andrew Dunstan, with review by Tom Lane.
* Fix language.Peter Eisentraut2003-11-02
|
* Make spelling consistent.Peter Eisentraut2003-11-02
|
* pg_dumpall doesn't use psql anymore.Peter Eisentraut2003-11-02
|
* Put --describe-config in the right place.Peter Eisentraut2003-11-02
|
* Fix name in supported platforms list.Peter Eisentraut2003-11-02
|
* Complete options help and put it in less random order.Peter Eisentraut2003-11-02
|
* Call domains "domains", not "derived types".Peter Eisentraut2003-11-02
|
* Update ports list.Peter Eisentraut2003-11-02
|
* Unset CFLAGS before reading template. This should be more robust.Peter Eisentraut2003-11-01
| | | | | | | | When --enable-debug is used, then the default CFLAGS for non-GCC is just -g without -O. Backpatch enhancement of Autoconf inline test that detects problems with the HP C compiler.
* Fix CFLAGS logic.Peter Eisentraut2003-11-01
|
* More whitespace fixes. Do people write the expected files by hand?Peter Eisentraut2003-11-01
|
* Fix hidden whitespace differences between expected and result files.Peter Eisentraut2003-11-01
|
* Spell checking, consistent terminology.Peter Eisentraut2003-11-01
|
* Update future-tense comments in README to present tense. Noted byTom Lane2003-10-31
| | | | Neil Conway.
* Rewrite GiST documentation into something actually useful.Tom Lane2003-10-31
| | | | Christopher Kings-Lynne
* Fix broken markup.Tom Lane2003-10-31
|
* Translation updatePeter Eisentraut2003-10-31
|
* When a superuser does GRANT or REVOKE on an object he doesn't own,Tom Lane2003-10-31
| | | | | | | | | process the command as though it were issued by the object owner. This prevents creating weird scenarios in which the same privileges may appear to flow from different sources, and ensures that a superuser can in fact revoke all privileges if he wants to. In particular this means that the regression tests work when run by a superuser other than the original bootstrap userid. Per report from Larry Rosenman.
* new protocol, faster startup.Bruce Momjian2003-10-31
|
* Update for polymorphic functions, needs more work.Bruce Momjian2003-10-31
|
* MAC OS X => Mac OS XBruce Momjian2003-10-31
|
* Release updates suggested by Tom.Bruce Momjian2003-10-31
|
* Minor cleanup of PQunescapeBytea(). Avoid unportable assumptions aboutTom Lane2003-10-31
| | | | | | behavior of malloc and realloc when request size is 0. Fix escape sequence recognizer so that only valid 3-digit octal sequences are treated as escape sequences ... isdigit() is not a correct test.
* Moved the recently added test for foreign key disabled by rewriteJan Wieck2003-10-31
| | | | | | rule into the rule.sql since it affects the latter if run in paralell. Jan
* If EOF is found inside a string/comment/etc. stop parsing.Michael Meskes2003-10-31
|
* Remove <note> take, use another paragraph for description.Bruce Momjian2003-10-31
|
* Update HISTORY.Bruce Momjian2003-10-31
|
* Update with more comments.Bruce Momjian2003-10-31
|
* Fix for possible referential integrity violation when a qualified ON INSERTJan Wieck2003-10-31
| | | | | | | | rule split the query into one INSERT and one UPDATE where the UPDATE then hit's the just created row without modifying the key fields again. In this special case, the new key slipped in totally unchecked. Jan
* Small fix to Christopher's recent improvements --- underscore is notTom Lane2003-10-31
| | | | | a special character in regexes, but it is for LIKE, so NOT LIKE 'pg_%' is incorrect. Need NOT LIKE 'pg\_%'.
* Use Tcl ByteArray objects to avoid unwanted character set translationTom Lane2003-10-31
| | | | | in libpgtcl's lo_read/lo_write commands. Also, deal correctly with failure return from lo_read(). ljb and Tom Lane.
* Further work on tab completion code: arrange for system catalogs to beTom Lane2003-10-30
| | | | | | | | | offered for completion only when the input-so-far is at least 'pg_'. This seems to be the best compromise behavior emerging from yesterday's discussion. While at it, refactor code to eliminate repetitive use of nearly identical queries, which was exceedingly tedious to maintain. Also const-ify code more thoroughly in hopes of moving constant data into text segment, and remove unnecessary length limit on queries.
* Fix markup by using <note> for comments.Bruce Momjian2003-10-30
|
* More SGML cleanup.Bruce Momjian2003-10-30
|
* SGML cleanup.Bruce Momjian2003-10-30
|
* Update SGML release notes with Peter's direction. Does not compileBruce Momjian2003-10-30
| | | | because of section adjustments still needed.
* Mark release note comments as new subsections rather than footnotes, perBruce Momjian2003-10-30
| | | | | | | | Peter. Remove "Changes" section and pull all sections below it up one level. More comment additions.
* Allow the query for a plpgsql cursor to begin with '(' as well as 'SELECT'.Tom Lane2003-10-30
| | | | Per example from Kumar, 30-Oct-03.
* use the result set to set the fetchsizeDave Cramer2003-10-30
|
* Applied patch by Dave Cramer to fix several bugs in compatlib.Michael Meskes2003-10-30
|
* Fix markup for new release footnotes.Bruce Momjian2003-10-30
|
* Update FAQ_DEV: elog => ereport.Bruce Momjian2003-10-30
|
* Update more release descriptions.Bruce Momjian2003-10-29
|
* Add more footnote comments to the release notes.Bruce Momjian2003-10-29
|
* Fix some corner cases in ACL manipulation: don't foul up on an emptyTom Lane2003-10-29
| | | | | | ACL array, and force languages to be treated as owned by the bootstrap user ID. (pg_language should have a lanowner column, but until it does this will have to do as a workaround.)
* Add first release note detail item.Bruce Momjian2003-10-29
|
* Update for 7.4 --- prefer IN to EXISTS.Bruce Momjian2003-10-29
|